Lines Matching full:once
312 * Call func once and only once
314 * @param once pointer to a heim_base_once_t
320 heim_base_once_f(heim_base_once_t *once, void *ctx, void (*func)(void *)) in heim_base_once_f() argument
323 dispatch_once_f(once, ctx, func); in heim_base_once_f()
327 if (*once == 0) { in heim_base_once_f()
328 *once = 1; in heim_base_once_f()
332 *once = 2; in heim_base_once_f()
334 } else if (*once == 2) { in heim_base_once_f()
342 if (*once == 2) in heim_base_once_f()
412 static heim_base_once_t once = HEIM_BASE_ONCE_INIT; in autorel_tls() local
416 heim_base_once_f(&once, NULL, init_ar_tls); in autorel_tls()