Searched defs:once_control (Results 1 - 3 of 3) sorted by relevance

/external/bison/lib/glthread/
H A Dlock.c457 glthread_once_singlethreaded (pthread_once_t *once_control) argument
461 char *firstbyte = (char *)once_control;
464 /* First time use of once_control. Invert the first byte. */
497 glthread_once_multithreaded (pth_once_t *once_control, void (*initfunction) (void)) argument
500 return (!pth_once (once_control, glthread_once_call, &temp) ? errno : 0);
504 glthread_once_singlethreaded (pth_once_t *once_control) argument
507 if (*once_control == PTH_ONCE_INIT)
509 /* First time use of once_control. Invert the marker. */
510 *once_control = ~ PTH_ONCE_INIT;
592 glthread_once_multithreaded (gl_once_t *once_control, voi argument
615 glthread_once_singlethreaded(gl_once_t *once_control) argument
1019 glthread_once_func(gl_once_t *once_control, void (*initfunction) (void)) argument
[all...]
/external/libxml2/
H A Dthreads.c148 static pthread_once_t once_control = PTHREAD_ONCE_INIT; variable
666 pthread_once(&once_control, xmlOnceInit);
804 pthread_once(&once_control, xmlOnceInit);
947 * pthread_once() in association with the once_control variable to ensure
/external/valgrind/main/drd/
H A Ddrd_pthread_intercepts.c580 int pthread_once_intercept(pthread_once_t *once_control, argument
591 DRD_IGNORE_VAR(*once_control);
593 CALL_FN_W_WW(ret, fn, once_control, init_routine);
595 DRD_STOP_IGNORING_VAR(*once_control);
600 (pthread_once_t *once_control, void (*init_routine)(void)),
601 (once_control, init_routine));

Completed in 589 milliseconds