Searched refs:ONCE_CONTROL (Results 1 – 3 of 3) sorted by relevance
/external/bison/lib/glthread/ |
D | lock.h | 365 # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ argument 367 ? pthread_once (ONCE_CONTROL, INITFUNCTION) \ 368 : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0)) 472 # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ argument 474 ? glthread_once_multithreaded (ONCE_CONTROL, INITFUNCTION) \ 475 : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0)) 601 # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ argument 603 ? glthread_once_multithreaded (ONCE_CONTROL, INITFUNCTION) \ 604 : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0)) 754 # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ argument [all …]
|
/external/libselinux/src/ |
D | selinux_internal.h | 103 #define __selinux_once(ONCE_CONTROL, INIT_FUNCTION) \ argument 106 pthread_once (&(ONCE_CONTROL), (INIT_FUNCTION)); \ 107 else if ((ONCE_CONTROL) == PTHREAD_ONCE_INIT) { \ 109 (ONCE_CONTROL) = 2; \
|
/external/selinux/libselinux/src/ |
D | selinux_internal.h | 118 #define __selinux_once(ONCE_CONTROL, INIT_FUNCTION) \ argument 121 pthread_once (&(ONCE_CONTROL), (INIT_FUNCTION)); \ 122 else if ((ONCE_CONTROL) == PTHREAD_ONCE_INIT) { \ 124 (ONCE_CONTROL) = 2; \
|