Home
last modified time | relevance | path

Searched refs:mutex_p (Results 1 – 2 of 2) sorted by relevance

/openssl/crypto/thread/arch/
H A Dthread_posix.c111 pthread_mutex_t *mutex_p; in ossl_crypto_mutex_try_lock() local
113 mutex_p = (pthread_mutex_t *)mutex; in ossl_crypto_mutex_try_lock()
124 pthread_mutex_t *mutex_p; in ossl_crypto_mutex_lock() local
126 mutex_p = (pthread_mutex_t *)mutex; in ossl_crypto_mutex_lock()
127 rc = pthread_mutex_lock(mutex_p); in ossl_crypto_mutex_lock()
134 pthread_mutex_t *mutex_p; in ossl_crypto_mutex_unlock() local
143 pthread_mutex_t **mutex_p; in ossl_crypto_mutex_free() local
149 if (*mutex_p != NULL) in ossl_crypto_mutex_free()
151 OPENSSL_free(*mutex_p); in ossl_crypto_mutex_free()
171 pthread_mutex_t *mutex_p; in ossl_crypto_condvar_wait() local
[all …]
H A Dthread_win.c109 CRITICAL_SECTION *mutex_p; in ossl_crypto_mutex_lock() local
111 mutex_p = (CRITICAL_SECTION *)mutex; in ossl_crypto_mutex_lock()
112 EnterCriticalSection(mutex_p); in ossl_crypto_mutex_lock()
117 CRITICAL_SECTION *mutex_p; in ossl_crypto_mutex_try_lock() local
119 mutex_p = (CRITICAL_SECTION *)mutex; in ossl_crypto_mutex_try_lock()
128 CRITICAL_SECTION *mutex_p; in ossl_crypto_mutex_unlock() local
131 LeaveCriticalSection(mutex_p); in ossl_crypto_mutex_unlock()
136 CRITICAL_SECTION **mutex_p; in ossl_crypto_mutex_free() local
139 if (*mutex_p != NULL) in ossl_crypto_mutex_free()
141 OPENSSL_free(*mutex_p); in ossl_crypto_mutex_free()
[all …]

Completed in 7 milliseconds