Searched refs:init_func (Results 1 - 9 of 9) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
H A Donce.h46 // * 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/v8/src/base/
H A Donce.h16 // * 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) { argument
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),
90 CallOnce(OnceType* once, typename OneArgFunction<Arg*>::type init_func, Arg* arg) argument
H A Donce.cc18 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg) { argument
37 init_func(arg);
/external/boringssl/src/crypto/test/
H A Dscoped_types.h74 template<typename T, typename CleanupRet, void (*init_func)(T*),
79 init_func(&ctx_);
90 init_func(&ctx_);
/external/boringssl/src/crypto/
H A Dthread_win.c78 void (*init_func)(void);
80 memcpy(&init_func, &arg, sizeof(void *));
81 init_func();
/external/v8/src/third_party/vtune/
H A Dittnotify_config.h347 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 Dittnotify_config.h318 void* init_func; member in struct:___itt_api_info_20101001
326 void* init_func; member in struct:___itt_api_info
/external/lldb/source/Core/
H A DDebugger.cpp418 LLDBCommandPluginInit init_func = dynlib_sp->GetSymbol<LLDBCommandPluginInit>("_ZN4lldb16PluginInitializeENS_10SBDebuggerE"); local
419 if (!init_func)
424 if (init_func(debugger_sb))
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp4369 int (*init_func)(EVP_MD_CTX*, const EVP_MD*, ENGINE*)) {
4382 int ok = init_func(ctx, evp_md, NULL);
4368 evpInit(JNIEnv* env, jobject evpMdCtxRef, jlong evpMdRef, const char* jniName, int (*init_func)(EVP_MD_CTX*, const EVP_MD*, ENGINE*)) argument

Completed in 4473 milliseconds