/external/protobuf/src/google/protobuf/stubs/ |
H A D | once.h | 46 // * A function GogoleOnceInit(ProtobufOnceType* once, void (*init_func)()). 48 // object, will invoke init_func on the first call only, and will make sure 49 // none of the calls return before that first call to init_func has finished. 91 void Init(void (*init_func)()); 100 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)()) { argument 103 once->Init(init_func); 114 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)()) { 115 pthread_once(once, init_func);
|
H A D | once.cc | 70 void ProtobufOnceType::Init(void (*init_func)()) { argument 79 init_func();
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | once.h | 46 // * A function GoogleOnceInit(ProtobufOnceType* once, void (*init_func)()). 48 // object, will invoke init_func on the first call only, and will make sure 49 // none of the calls return before that first call to init_func has finished. 93 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)()) { argument 96 init_func(); 101 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)(Arg), argument 105 init_func(arg); 124 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)()) { 126 internal::FunctionClosure0 func(init_func, false); 132 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)(Ar [all...] |
/external/chromium_org/v8/src/ |
H A D | once.h | 39 // * A function CallOnce(OnceType* once, void (*init_func)()). 41 // will invoke init_func on the first call only, and will make sure none of 42 // the calls return before that first call to init_func has finished. 103 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg); 105 inline void CallOnce(OnceType* once, NoArgFunction init_func) { argument 107 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func), NULL); 114 typename OneArgFunction<Arg*>::type init_func, Arg* arg) { 116 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func), 113 CallOnce(OnceType* once, typename OneArgFunction<Arg*>::type init_func, Arg* arg) argument
|
H A D | once.cc | 42 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg) { argument 61 init_func(arg);
|
/external/v8/src/ |
H A D | once.h | 39 // * A function CallOnce(OnceType* once, void (*init_func)()). 41 // will invoke init_func on the first call only, and will make sure none of 42 // the calls return before that first call to init_func has finished. 103 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg); 105 inline void CallOnce(OnceType* once, NoArgFunction init_func) { argument 107 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func), NULL); 114 typename OneArgFunction<Arg*>::type init_func, Arg* arg) { 116 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func), 113 CallOnce(OnceType* once, typename OneArgFunction<Arg*>::type init_func, Arg* arg) argument
|
H A D | once.cc | 42 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg) { argument 61 init_func(arg);
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
H A D | register.h | 98 FstInitFunc init_func = local 100 if (init_func == 0) { 104 (*init_func)();
|
/external/chromium_org/chrome/browser/ui/libgtk2ui/ |
H A D | gtk2_util.cc | 20 void (*init_func)(gint*, gchar***)) { 32 init_func(&argc, &argv_pointer); 19 CommonInitFromCommandLine(const CommandLine& command_line, void (*init_func)(gint*, gchar***)) argument
|
/external/chromium_org/ui/gfx/ |
H A D | gtk_util.cc | 60 void (*init_func)(gint*, gchar***)) { 72 init_func(&argc, &argv_pointer); 59 CommonInitFromCommandLine(const CommandLine& command_line, void (*init_func)(gint*, gchar***)) argument
|
/external/chromium_org/v8/src/third_party/vtune/ |
H A D | ittnotify_config.h | 347 void* init_func; member in struct:___itt_api_info_20101001 355 void* init_func; member in struct:___itt_api_info
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
H A D | ittnotify_config.h | 318 void* init_func; member in struct:___itt_api_info_20101001 326 void* init_func; member in struct:___itt_api_info
|
/external/qemu-pc-bios/bochs/bios/ |
H A D | rombios32.c | 1032 void pci_for_each_device(void (*init_func)(PCIDevice *d)) 1045 init_func(d);
|