Home
last modified time | relevance | path

Searched refs:init_func (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Donce.h94 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)()) { in GoogleOnceInit() argument
97 init_func(); in GoogleOnceInit()
102 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)(Arg), in GoogleOnceInit()
106 init_func(arg); in GoogleOnceInit()
125 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)()) {
127 internal::FunctionClosure0 func(init_func, false);
133 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)(Arg*),
136 internal::FunctionClosure1<Arg*> func(init_func, false, arg);
/frameworks/native/opengl/libs/EGL/
Degl_layers.cpp411 std::string init_func = "AndroidGLESLayer_Initialize"; in LoadLayers() local
412 ALOGV("Looking for entrypoint %s", init_func.c_str()); in LoadLayers()
415 reinterpret_cast<layer_init_func>(dlsym(handle, init_func.c_str())); in LoadLayers()
417 ALOGV("Found %s for layer %s", init_func.c_str(), layer.c_str()); in LoadLayers()
420 ALOGE("Failed to dlsym %s for layer %s", init_func.c_str(), layer.c_str()); in LoadLayers()