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

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_once/
1-1.c 11 * thread in a process, with a given 'once_control', shall call the
13 * with the same once_control shall not call the 'init_routine'. The
14 * 'once_control' paramter shall determine whether the associated
41 pthread_once_t once_control = PTHREAD_ONCE_INIT; local
45 /* Call pthread_once, passing it the once_control */
46 ret = pthread_once(&once_control, an_init_func);
53 ret = pthread_once(&once_control, an_init_func);
3-1.c 12 * 'once_control' shall be as if pthread_once() was never called.
32 pthread_once_t once_control = PTHREAD_ONCE_INIT; variable
57 pthread_once(&once_control, (void *)an_init_func);
104 pthread_once(&once_control, (void *)an_init_func2);
  /external/google-breakpad/src/common/linux/
guid_creator.cc 75 pthread_once(&once_control, &InitOnceImpl);
82 static pthread_once_t once_control; member in class:GUIDGenerator
85 pthread_once_t GUIDGenerator::once_control = PTHREAD_ONCE_INIT; member in class:GUIDGenerator
  /external/jemalloc/src/
mutex.c 56 static pthread_once_t once_control = PTHREAD_ONCE_INIT; local
58 pthread_once(&once_control, pthread_create_once);
android_je_iterate.c 171 static pthread_once_t once_control = PTHREAD_ONCE_INIT; local
172 pthread_once(&once_control, je_malloc_disable_init);
  /external/mesa3d/src/mapi/glapi/
glapi_entrypoint.c 341 static pthread_once_t once_control = PTHREAD_ONCE_INIT; local
342 pthread_once( & once_control, init_glapi_relocs );
  /external/mesa3d/src/glx/
glxcurrent.c 100 static pthread_once_t once_control = PTHREAD_ONCE_INIT; variable
130 pthread_once(&once_control, init_thread_data);
139 pthread_once(&once_control, init_thread_data);
  /frameworks/av/media/libaudioprocessing/
AudioResampler.cpp 105 static pthread_once_t once_control = PTHREAD_ONCE_INIT; member in namespace:android
156 int ok = pthread_once(&once_control, init_routine);
AudioResamplerSinc.cpp 83 static pthread_once_t once_control = PTHREAD_ONCE_INIT; member in namespace:android
236 int ok = pthread_once(&once_control, init_routine);
  /frameworks/native/opengl/libs/EGL/
egl.cpp 84 static pthread_once_t once_control = PTHREAD_ONCE_INIT; member in namespace:android
85 static int sEarlyInitState = pthread_once(&once_control, &early_egl_init);
  /external/libxml2/
threads.c 148 static pthread_once_t once_control = PTHREAD_ONCE_INIT; variable
667 pthread_once(&once_control, xmlOnceInit);
805 pthread_once(&once_control, xmlOnceInit);
919 once_control = once_control_init;
949 * pthread_once() in association with the once_control variable to ensure
  /toolchain/binutils/binutils-2.25/gold/
gold-threads.cc 302 once_control() function in class:gold::Once_initialize
410 err = pthread_once(this->once_->once_control(), c_run_once);
  /bionic/tests/
pthread_test.cpp 1078 pthread_once_t once_control = PTHREAD_ONCE_INIT; local
    [all...]

Completed in 1407 milliseconds