Lines Matching refs:pthread_mutex_t
1017 pub struct pthread_mutex_t {
1285 impl PartialEq for pthread_mutex_t {
1286 fn eq(&self, other: &pthread_mutex_t) -> bool {
1290 impl Eq for pthread_mutex_t {}
1291 impl hash::Hash for pthread_mutex_t {
2317 pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t {
3771 lock: *mut pthread_mutex_t, in pthread_mutex_init() argument
3774 pub fn pthread_mutex_destroy(lock: *mut pthread_mutex_t) -> c_int; in pthread_mutex_destroy()
3775 pub fn pthread_mutex_lock(lock: *mut pthread_mutex_t) -> c_int; in pthread_mutex_lock()
3776 pub fn pthread_mutex_trylock(lock: *mut pthread_mutex_t) -> c_int; in pthread_mutex_trylock()
3777 pub fn pthread_mutex_unlock(lock: *mut pthread_mutex_t) -> c_int; in pthread_mutex_unlock()
3784 pub fn pthread_cond_wait(cond: *mut pthread_cond_t, lock: *mut pthread_mutex_t) -> c_int; in pthread_cond_wait()
3787 lock: *mut pthread_mutex_t, in pthread_cond_timedwait() argument
4200 lock: *mut pthread_mutex_t, in pthread_mutex_timedlock() argument