Searched refs:pthread_once_t (Results 1 – 6 of 6) sorted by relevance
15 (void)pthread_once((pthread_once_t *)flag, func); in call_once()
149 typedef struct pthread_once pthread_once_t; typedef151 BUILD_ASSERT(sizeof(pthread_once_t) >= sizeof(struct pthread_once));
429 int pthread_once(pthread_once_t *once, void (*initFunc)(void));
18 static pthread_once_t key_once = PTHREAD_ONCE_INIT;19 static pthread_once_t keys_once = PTHREAD_ONCE_INIT;
46 __unused pthread_once_t once = PTHREAD_ONCE_INIT; in ZTEST()
1012 int pthread_once(pthread_once_t *once, void (*init_func)(void)) in pthread_once()