HomeSort by relevance Sort by last modified time
    Searched refs:init_func (Results 1 - 17 of 17) 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/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
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)()) {
96 init_func();
101 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)(Arg),
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)(Arg*)
    [all...]
  /external/chromium_org/v8/src/base/
once.h 16 // * A function CallOnce(OnceType* once, void (*init_func)()).
18 // will invoke init_func on the first call only, and will make sure none of
19 // the calls return before that first call to init_func has finished.
80 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg);
82 inline void CallOnce(OnceType* once, NoArgFunction init_func) {
84 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func), NULL);
91 typename OneArgFunction<Arg*>::type init_func, Arg* arg) {
93 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func),
once.cc 18 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg) {
37 init_func(arg);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
unit_test.hpp 46 int BOOST_TEST_DECL unit_test_main( init_unit_test_func init_func, int argc, char* argv[] );
framework.hpp 51 BOOST_TEST_DECL void init( init_unit_test_func init_func, int argc, char* argv[] );
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
register.h 98 FstInitFunc init_func = local
100 if (init_func == 0) {
104 (*init_func)();
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_util.cc 26 void (*init_func)(gint*, gchar***)) {
38 init_func(&argc, &argv_pointer);
  /bionic/linker/
linker.h 172 linker_function_t init_func; member in struct:soinfo
linker.cpp     [all...]
  /external/chromium_org/v8/src/third_party/vtune/
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/
ittnotify_config.h 318 void* init_func; member in struct:___itt_api_info_20101001
326 void* init_func; member in struct:___itt_api_info
  /hardware/intel/common/libva/va/
va.c 241 VADriverInit init_func = NULL; local
259 init_func = (VADriverInit)dlsym(handle, init_func_s);
260 if (init_func) {
292 if (init_func && VA_STATUS_SUCCESS == vaStatus)
293 vaStatus = (*init_func)(ctx);
    [all...]
  /external/lldb/source/Core/
Debugger.cpp 418 LLDBCommandPluginInit init_func = dynlib_sp->GetSymbol<LLDBCommandPluginInit>("_ZN4lldb16PluginInitializeENS_10SBDebuggerE"); local
419 if (!init_func)
424 if (init_func(debugger_sb))
    [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...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]

Completed in 926 milliseconds