Searched refs:mutex_p (Results 1 – 2 of 2) sorted by relevance
111 pthread_mutex_t *mutex_p; in ossl_crypto_mutex_try_lock() local113 mutex_p = (pthread_mutex_t *)mutex; in ossl_crypto_mutex_try_lock()124 pthread_mutex_t *mutex_p; in ossl_crypto_mutex_lock() local126 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() local143 pthread_mutex_t **mutex_p; in ossl_crypto_mutex_free() local149 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 …]
109 CRITICAL_SECTION *mutex_p; in ossl_crypto_mutex_lock() local111 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() local119 mutex_p = (CRITICAL_SECTION *)mutex; in ossl_crypto_mutex_try_lock()128 CRITICAL_SECTION *mutex_p; in ossl_crypto_mutex_unlock() local131 LeaveCriticalSection(mutex_p); in ossl_crypto_mutex_unlock()136 CRITICAL_SECTION **mutex_p; in ossl_crypto_mutex_free() local139 if (*mutex_p != NULL) in ossl_crypto_mutex_free()141 OPENSSL_free(*mutex_p); in ossl_crypto_mutex_free()[all …]
Completed in 9 milliseconds