Home
last modified time | relevance | path

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

/bionic/libc/netbsd/resolv/
Dres_cache.c1643 pthread_once(&_res_cache_once, _res_cache_init); in __get_res_cache()
1700 pthread_once(&_res_cache_once, _res_cache_init); in _resolv_cache_reset()
1739 pthread_once(&_res_cache_once, _res_cache_init); in _resolv_flush_cache_for_default_iface()
1751 pthread_once(&_res_cache_once, _res_cache_init); in _resolv_flush_cache_for_iface()
1831 pthread_once(&_res_cache_once, _res_cache_init); in _resolv_set_default_iface()
1849 pthread_once(&_res_cache_once, _res_cache_init); in _resolv_set_nameservers_for_iface()
1901 pthread_once(&_res_cache_once, _res_cache_init); in _resolv_cache_get_nameserver()
1944 pthread_once(&_res_cache_once, _res_cache_init); in _cache_get_nameserver_addr()
1973 pthread_once(&_res_cache_once, _res_cache_init); in _resolv_set_addr_of_iface()
1993 pthread_once(&_res_cache_once, _res_cache_init); in _resolv_get_addr_of_default_iface()
[all …]
Dres_state.c117 pthread_once( &_res_once, _res_init_key ); in _res_thread_get()
/bionic/libc/bionic/
Dmalloc_debug_common.c519 if (pthread_once(&malloc_init_once_ctl, malloc_init_impl)) { in malloc_debug_init()
530 if (pthread_once(&malloc_fini_once_ctl, malloc_fini_impl)) { in malloc_debug_fini()
Dstubs.c154 pthread_once(&the_once, __stubs_key_init); in __stubs_state()
Dpthread-timers.c252 pthread_once( &__timer_table_once, __timer_table_init ); in __timer_table_get()
Dpthread.c2163 int pthread_once( pthread_once_t* once_control, void (*init_routine)(void) ) in pthread_once() function
/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.h271 int pthread_once(pthread_once_t *once_control, void (*init_routine)(void));