OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:g_destructors_lock
(Results
1 - 2
of
2
) sorted by null
/external/boringssl/src/crypto/
thread_pthread.c
94
static pthread_mutex_t
g_destructors_lock
= PTHREAD_MUTEX_INITIALIZER;
variable
103
if (pthread_mutex_lock(&
g_destructors_lock
) != 0) {
107
pthread_mutex_unlock(&
g_destructors_lock
);
165
if (pthread_mutex_lock(&
g_destructors_lock
) != 0) {
170
pthread_mutex_unlock(&
g_destructors_lock
);
thread_win.c
85
static CRITICAL_SECTION
g_destructors_lock
;
variable
93
if (!InitializeCriticalSectionAndSpinCount(&
g_destructors_lock
, 0x400)) {
124
EnterCriticalSection(&
g_destructors_lock
);
126
LeaveCriticalSection(&
g_destructors_lock
);
229
EnterCriticalSection(&
g_destructors_lock
);
231
LeaveCriticalSection(&
g_destructors_lock
);
Completed in 5171 milliseconds