Home
last modified time | relevance | path

Searched refs:pthread_once (Results 1 – 10 of 10) sorted by relevance

/bionic/libc/netbsd/resolv/
Dres_state.c109 pthread_once( &_res_once, _res_init_key ); in _res_thread_get()
Dres_cache.c1443 pthread_once( &_res_cache_once, _res_cache_init ); in __get_res_cache()
/bionic/libc/stdio/
Dflockfile.c87 pthread_once( &_lockTable_once, lock_table_init ); in lock_table_lock()
/bionic/libc/
DCAVEATS16 - pthread_once() doesn't support C++ exceptions thrown from the init function, or the init
/bionic/libc/docs/
DOVERVIEW.TXT179 pthread_once():
181 Do not call fork() within a callback provided to pthread_once(). Doing this
183 pthread_once().
188 The current implementation of pthread_once() lacks the necessary support of
363 - If pthread_once() is called with a C++ callback that throws an exception,
365 locked. Any further call to pthread_once() will result in a deadlock.
/bionic/libc/include/
Dpthread.h267 int pthread_once(pthread_once_t *once_control, void (*init_routine)(void));
/bionic/libc/bionic/
Dstubs.c82 pthread_once(&the_once, __stubs_key_init); in __stubs_state()
Dmalloc_debug_common.c493 if (pthread_once(&malloc_init_once_ctl, malloc_init_impl)) { in malloc_debug_init()
Dpthread-timers.c252 pthread_once( &__timer_table_once, __timer_table_init ); in __timer_table_get()
Dpthread.c1867 int pthread_once( pthread_once_t* once_control, void (*init_routine)(void) ) in pthread_once() function