SYMBOL INDEX (38 symbols across 2 files) FILE: SimpleSignal.h function namespace (line 10) | namespace Simple { function invoke (line 57) | inline bool function add_cb (line 80) | size_t add_cb(const CbFunction& cb) function remove_cb (line 86) | bool remove_cb(size_t id) function connect (line 108) | size_t connect (const CbFunction &cb) { return add_cb(cb); } function disconnect (line 110) | bool disconnect (size_t connection) { return remove_cb(connect... function CollectorResult (line 113) | CollectorResult type Signal (line 153) | struct Signal function ProtoSignal (line 159) | ProtoSignal (method) {} function CollectorResult (line 212) | const CollectorResult& result () { return result_; } FILE: test.cpp function string_printf (line 19) | static std::string function timestamp_benchmark (line 32) | static uint64_t type TestCounter (line 39) | struct TestCounter { class BasicSignalTests (line 50) | class BasicSignalTests { type Foo (line 52) | struct Foo { method foo_bool (line 53) | char method float_callback (line 60) | static char method run (line 67) | static void class TestCollectorVector (line 106) | class TestCollectorVector { method handler1 (line 107) | static int handler1 () { return 1; } method handler42 (line 108) | static int handler42 () { return 42; } method handler777 (line 109) | static int handler777 () { return 777; } method run (line 111) | static void class TestCollectorUntil0 (line 127) | class TestCollectorUntil0 { method TestCollectorUntil0 (line 129) | TestCollectorUntil0() : check1 (0), check2 (0) {} method handler_true (line 130) | bool handler_true () { check1 = true; return true; } method handler_false (line 131) | bool handler_false () { check2 = true; return false; } method handler_abort (line 132) | bool handler_abort () { std::abort(); } method run (line 134) | static void class TestCollectorWhile0 (line 148) | class TestCollectorWhile0 { method TestCollectorWhile0 (line 150) | TestCollectorWhile0() : check1 (0), check2 (0) {} method handler_0 (line 151) | bool handler_0 () { check1 = true; return false; } method handler_1 (line 152) | bool handler_1 () { check2 = true; return true; } method handler_abort (line 153) | bool handler_abort () { std::abort(); } method run (line 155) | static void function bench_simple_signal (line 169) | static void function bench_callback_loop (line 188) | static void function main (line 223) | int