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

/solaris-userland-s11u3/components/openssl/common/engines/pkcs11/
H A De_pk11.h210 extern pthread_mutex_t *find_lock[];
220 (void) pthread_mutex_lock(find_lock[alg_type])
222 (void) pthread_mutex_unlock(find_lock[alg_type])
H A De_pk11.c178 pthread_mutex_t *find_lock[OP_MAX] = { NULL }; variable
815 find_lock[OP_RSA] = OPENSSL_malloc(sizeof (pthread_mutex_t));
816 if (find_lock[OP_RSA] == NULL)
818 (void) pthread_mutex_init(find_lock[OP_RSA], NULL);
826 find_lock[OP_DSA] = OPENSSL_malloc(sizeof (pthread_mutex_t));
827 if (find_lock[OP_DSA] == NULL)
829 (void) pthread_mutex_init(find_lock[OP_DSA], NULL);
833 find_lock[OP_DH] = OPENSSL_malloc(sizeof (pthread_mutex_t));
834 if (find_lock[OP_DH] == NULL)
836 (void) pthread_mutex_init(find_lock[OP_D
[all...]

Completed in 385 milliseconds