Searched refs:once_control (Results 1 – 5 of 5) sorted by relevance
41 int pthread_once(pthread_once_t* once_control, void (*init_routine)(void)) { in pthread_once() argument47 atomic_int* once_control_ptr = reinterpret_cast<atomic_int*>(once_control); in pthread_once()
122 static pthread_once_t once_control = PTHREAD_ONCE_INIT; variable123 static int sEarlyInitState = pthread_once(&once_control, &early_egl_init);
105 static pthread_once_t once_control = PTHREAD_ONCE_INIT; variable156 int ok = pthread_once(&once_control, init_routine); in create()
84 static pthread_once_t once_control = PTHREAD_ONCE_INIT; variable237 int ok = pthread_once(&once_control, init_routine); in AudioResamplerSinc()
1349 pthread_once_t once_control = PTHREAD_ONCE_INIT; in TEST() local1350 ASSERT_EQ(0, pthread_once(&once_control, OnceFn)); in TEST()1351 ASSERT_EQ(0, pthread_once(&once_control, OnceFn)); in TEST()