Searched refs:find_lock (Results 1 - 2 of 2) sorted by relevance

/solaris-userland/components/openssl/common/engines/pkcs11/
H A De_pk11.h201 extern pthread_mutex_t *find_lock[];
211 (void) pthread_mutex_lock(find_lock[alg_type])
213 (void) pthread_mutex_unlock(find_lock[alg_type])
H A De_pk11.c158 pthread_mutex_t *find_lock[OP_MAX] = { NULL }; variable
793 find_lock[OP_RSA] = OPENSSL_malloc(sizeof (pthread_mutex_t));
794 if (find_lock[OP_RSA] == NULL) {
797 (void) pthread_mutex_init(find_lock[OP_RSA], NULL);
806 find_lock[OP_DSA] = OPENSSL_malloc(sizeof (pthread_mutex_t));
807 if (find_lock[OP_DSA] == NULL) {
810 (void) pthread_mutex_init(find_lock[OP_DSA], NULL);
814 find_lock[OP_DH] = OPENSSL_malloc(sizeof (pthread_mutex_t));
815 if (find_lock[OP_DH] == NULL) {
818 (void) pthread_mutex_init(find_lock[OP_D
[all...]

Completed in 16 milliseconds