Home
last modified time | relevance | path

Searched refs:mu (Results 1 – 5 of 5) sorted by relevance

/optee_client-3.20.0/tee-supplicant/src/
A Dhandle.h36 pthread_mutex_t *mu; member
40 #define HANDLE_DB_INITIALIZER_WITH_MUTEX(mu) { NULL, 0, (mu) } argument
47 void handle_db_set_mutex(struct handle_db *db, pthread_mutex_t *mu);
A Dhandle.c41 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() argument
54 db->mu = mu; in handle_db_set_mutex()
A Dtee_supplicant.h55 void tee_supp_mutex_lock(pthread_mutex_t *mu);
56 void tee_supp_mutex_unlock(pthread_mutex_t *mu);
A Dtee_supplicant.c954 void tee_supp_mutex_lock(pthread_mutex_t *mu) in tee_supp_mutex_lock() argument
956 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() argument
967 int e = pthread_mutex_unlock(mu); in tee_supp_mutex_unlock()
/optee_client-3.20.0/libteec/src/
A Dtee_client_api.c69 static void teec_mutex_lock(pthread_mutex_t *mu) in teec_mutex_lock() argument
71 pthread_mutex_lock(mu); in teec_mutex_lock()
74 static void teec_mutex_unlock(pthread_mutex_t *mu) in teec_mutex_unlock() argument
76 pthread_mutex_unlock(mu); in teec_mutex_unlock()

Completed in 23 milliseconds