HomeSort by relevance Sort by last modified time
    Searched refs:init_func (Results 1 - 13 of 13) sorted by null

  /external/protobuf/src/google/protobuf/stubs/
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)()) {
103 once->Init(init_func);
114 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)()) {
115 pthread_once(once, init_func);
once.cc 70 void ProtobufOnceType::Init(void (*init_func)()) {
79 init_func();
  /external/v8/src/
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) {
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),
once.cc 42 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg) {
61 init_func(arg);
  /external/wpa_supplicant_8/src/wps/
wps_nfc.c 34 if (oob_nfc_dev->init_func(oob_dev->device_path) < 0)
107 .init_func = init_nfc,
wps_nfc_pn531.c 103 .init_func = init_nfc_pn531,
wps_ufd.c 226 .init_func = init_ufd,
wps.h 770 void * (*init_func)(struct wps_context *, struct oob_device_data *, member in struct:oob_device_data
778 int (*init_func)(char *); member in struct:oob_nfc_device_data
wps_common.c 502 oob_priv = oob_dev->init_func(wps, oob_dev, registrar);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
register.h 98 FstInitFunc init_func = local
100 if (init_func == 0) {
104 (*init_func)();
  /bionic/linker/
linker.h 144 void (*init_func)(void); member in struct:soinfo
linker.cpp     [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios32.c 1032 void pci_for_each_device(void (*init_func)(PCIDevice *d))
1045 init_func(d);
    [all...]

Completed in 202 milliseconds