Searched refs:mu (Results 1 – 5 of 5) sorted by relevance
36 pthread_mutex_t *mu; member40 #define HANDLE_DB_INITIALIZER_WITH_MUTEX(mu) { NULL, 0, (mu) } argument47 void handle_db_set_mutex(struct handle_db *db, pthread_mutex_t *mu);
41 if (db->mu) in mutex_lock()42 pthread_mutex_lock(db->mu); in mutex_lock()47 if (db->mu) in mutex_unlock()48 pthread_mutex_unlock(db->mu); in mutex_unlock()52 void handle_db_set_mutex(struct handle_db *db, pthread_mutex_t *mu) in handle_db_set_mutex() argument54 db->mu = mu; in handle_db_set_mutex()
55 void tee_supp_mutex_lock(pthread_mutex_t *mu);56 void tee_supp_mutex_unlock(pthread_mutex_t *mu);
954 void tee_supp_mutex_lock(pthread_mutex_t *mu) in tee_supp_mutex_lock() argument956 int e = pthread_mutex_lock(mu); in tee_supp_mutex_lock()965 void tee_supp_mutex_unlock(pthread_mutex_t *mu) in tee_supp_mutex_unlock() argument967 int e = pthread_mutex_unlock(mu); in tee_supp_mutex_unlock()
69 static void teec_mutex_lock(pthread_mutex_t *mu) in teec_mutex_lock() argument71 pthread_mutex_lock(mu); in teec_mutex_lock()74 static void teec_mutex_unlock(pthread_mutex_t *mu) in teec_mutex_unlock() argument76 pthread_mutex_unlock(mu); in teec_mutex_unlock()
Completed in 23 milliseconds