Home
last modified time | relevance | path

Searched refs:pthread_mutex_t (Results 1 - 25 of 538) sorted by relevance

12345678910>>...22

/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b64/aarch64/
H A Dlp64.rs1 use pthread_mutex_t;
13 pub const PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
14 pthread_mutex_t {
22 pub const PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
23 pthread_mutex_t {
31 pub const PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
32 pthread_mutex_t {
40 pub const PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
41 pthread_mutex_t {
49 pub const PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP: ::pthread_mutex_t
[all...]
H A Dilp32.rs1 use pthread_mutex_t;
13 pub const PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
14 pthread_mutex_t {
21 pub const PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
22 pthread_mutex_t {
29 pub const PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
30 pthread_mutex_t {
37 pub const PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
38 pthread_mutex_t {
45 pub const PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP: ::pthread_mutex_t
[all...]
/third_party/musl/libc-test/src/functionalext/thread/
H A Dpthread_mutex_ext.c23 pthread_mutex_t *mtx = (pthread_mutex_t*)arg; in PthreadClocklockOutRealTime()
44 pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; in pthread_mutex_clocklock_0010()
60 pthread_mutex_t *mtx = (pthread_mutex_t*)arg; in PthreadClocklockNoOutRealTime()
76 pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; in pthread_mutex_clocklock_0020()
91 pthread_mutex_t *mtx = (pthread_mutex_t*)arg; in PthreadClocklockOutMonoTime()
112 pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; in pthread_mutex_clocklock_0030()
128 pthread_mutex_t *mt in PthreadClocklockNoOutMonoTime()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DMutex.cpp48 pthread_mutex_t* mutex =
49 static_cast<pthread_mutex_t*>(malloc(sizeof(pthread_mutex_t)));
77 pthread_mutex_t* mutex = static_cast<pthread_mutex_t*>(data_);
86 pthread_mutex_t* mutex = static_cast<pthread_mutex_t*>(data_);
96 pthread_mutex_t* mutex = static_cast<pthread_mutex_t*>(data_);
106 pthread_mutex_t* mute
[all...]
/third_party/vk-gl-cts/framework/delibs/dethread/unix/
H A DdeMutexUnix.c34 DE_STATIC_ASSERT(sizeof(deMutex) >= sizeof(pthread_mutex_t*));
40 pthread_mutex_t* mutex = deMalloc(sizeof(pthread_mutex_t)); in deMutex_create()
90 pthread_mutex_t* pMutex = (pthread_mutex_t*)mutex; in deMutex_destroy()
98 int ret = pthread_mutex_lock((pthread_mutex_t*)mutex); in deMutex_lock()
105 int ret = pthread_mutex_unlock((pthread_mutex_t*)mutex); in deMutex_unlock()
112 return (pthread_mutex_trylock((pthread_mutex_t*)mutex) == 0); in deMutex_tryLock()
/third_party/musl/porting/linux/user/include/
H A Dpthread.h30 * attributes of the pthread_mutex_t struct.
33 * can not be found in pthread_mutex_t. */
133 int pthread_mutex_init(pthread_mutex_t *__restrict, const pthread_mutexattr_t *__restrict);
134 int pthread_mutex_lock(pthread_mutex_t *);
135 int pthread_mutex_unlock(pthread_mutex_t *);
136 int pthread_mutex_trylock(pthread_mutex_t *);
137 int pthread_mutex_timedlock(pthread_mutex_t *__restrict, const struct timespec *__restrict);
138 int pthread_mutex_destroy(pthread_mutex_t *);
139 int pthread_mutex_consistent(pthread_mutex_t *);
154 int pthread_mutex_clocklock(pthread_mutex_t *__restric
[all...]
/third_party/musl/include/
H A Dpthread.h108 int pthread_mutex_init(pthread_mutex_t *__restrict, const pthread_mutexattr_t *__restrict);
109 int pthread_mutex_lock(pthread_mutex_t *);
110 int pthread_mutex_unlock(pthread_mutex_t *);
111 int pthread_mutex_trylock(pthread_mutex_t *);
112 int pthread_mutex_timedlock(pthread_mutex_t *__restrict, const struct timespec *__restrict);
113 int pthread_mutex_destroy(pthread_mutex_t *);
114 int pthread_mutex_consistent(pthread_mutex_t *);
129 int pthread_mutex_clocklock(pthread_mutex_t *__restrict, clockid_t, const struct timespec *__restrict);
143 int pthread_mutex_timedlock_monotonic_np(pthread_mutex_t *__restrict, const struct timespec *__restrict);
157 int pthread_mutex_lock_timeout_np(pthread_mutex_t *__restric
[all...]
/third_party/musl/libc-test/src/api/
H A Dpthread.c12 T(pthread_mutex_t) in f()
53 {pthread_mutex_t x = PTHREAD_MUTEX_INITIALIZER;} in f()
86 {int(*p)(pthread_cond_t*restrict,pthread_mutex_t*restrict,const struct timespec*restrict) = pthread_cond_timedwait;} in f()
87 {int(*p)(pthread_cond_t*restrict,pthread_mutex_t*restrict) = pthread_cond_wait;} in f()
102 {int(*p)(pthread_mutex_t*) = pthread_mutex_consistent;} in f()
103 {int(*p)(pthread_mutex_t*) = pthread_mutex_destroy;} in f()
104 {int(*p)(pthread_mutex_t*restrict,const pthread_mutexattr_t*restrict) = pthread_mutex_init;} in f()
105 {int(*p)(pthread_mutex_t*) = pthread_mutex_lock;} in f()
106 {int(*p)(pthread_mutex_t*) = pthread_mutex_trylock;} in f()
107 {int(*p)(pthread_mutex_t*) in f()
[all...]
/third_party/python/Include/cpython/
H A Dpthread_stubs.h35 typedef struct { void *__x; } pthread_mutex_t; typedef
43 PyAPI_FUNC(int) pthread_mutex_init(pthread_mutex_t *restrict mutex,
45 PyAPI_FUNC(int) pthread_mutex_destroy(pthread_mutex_t *mutex);
46 PyAPI_FUNC(int) pthread_mutex_trylock(pthread_mutex_t *mutex);
47 PyAPI_FUNC(int) pthread_mutex_lock(pthread_mutex_t *mutex);
48 PyAPI_FUNC(int) pthread_mutex_unlock(pthread_mutex_t *mutex);
55 pthread_mutex_t *restrict mutex);
57 pthread_mutex_t *restrict mutex,
/third_party/musl/porting/linux/user/src/include/
H A Dpthread.h26 hidden int __pthread_mutex_lock(pthread_mutex_t *);
27 hidden int __pthread_mutex_trylock(pthread_mutex_t *);
28 hidden int __pthread_mutex_trylock_owner(pthread_mutex_t *);
29 hidden int __pthread_mutex_timedlock(pthread_mutex_t *restrict, const struct timespec *restrict);
30 hidden int __pthread_mutex_unlock(pthread_mutex_t *);
32 hidden int __pthread_cond_timedwait(pthread_cond_t *restrict, pthread_mutex_t *restrict, const struct timespec *restrict);
/third_party/musl/src/include/
H A Dpthread.h12 hidden int __pthread_mutex_lock(pthread_mutex_t *);
13 hidden int __pthread_mutex_trylock(pthread_mutex_t *);
14 hidden int __pthread_mutex_trylock_owner(pthread_mutex_t *);
15 hidden int __pthread_mutex_timedlock(pthread_mutex_t *restrict, const struct timespec *restrict);
16 hidden int __pthread_mutex_unlock(pthread_mutex_t *);
18 hidden int __pthread_cond_timedwait(pthread_cond_t *restrict, pthread_mutex_t *restrict, const struct timespec *restrict);
/third_party/python/Python/
H A Dthread_pthread_stubs.h5 pthread_mutex_init(pthread_mutex_t *restrict mutex, in pthread_mutex_init()
12 pthread_mutex_destroy(pthread_mutex_t *mutex) in pthread_mutex_destroy()
18 pthread_mutex_trylock(pthread_mutex_t *mutex) in pthread_mutex_trylock()
24 pthread_mutex_lock(pthread_mutex_t *mutex) in pthread_mutex_lock()
30 pthread_mutex_unlock(pthread_mutex_t *mutex) in pthread_mutex_unlock()
50 pthread_mutex_t *restrict mutex) in pthread_cond_wait()
57 pthread_mutex_t *restrict mutex, in pthread_cond_timedwait()
/third_party/musl/porting/uniproton/kernel/include/
H A Dpthread.h110 int pthread_mutex_init(pthread_mutex_t *__restrict, const pthread_mutexattr_t *__restrict);
111 int pthread_mutex_lock(pthread_mutex_t *);
112 int pthread_mutex_unlock(pthread_mutex_t *);
113 int pthread_mutex_trylock(pthread_mutex_t *);
114 int pthread_mutex_timedlock(pthread_mutex_t *__restrict, const struct timespec *__restrict);
115 int pthread_mutex_destroy(pthread_mutex_t *);
116 int pthread_mutex_consistent(pthread_mutex_t *);
118 int pthread_mutex_getprioceiling(const pthread_mutex_t *__restrict, int *__restrict);
119 int pthread_mutex_setprioceiling(pthread_mutex_t *__restrict, int, int *__restrict);
123 int pthread_cond_wait(pthread_cond_t *__restrict, pthread_mutex_t *__restric
[all...]
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dpthread.h110 int pthread_mutex_init(pthread_mutex_t *__restrict, const pthread_mutexattr_t *__restrict);
111 int pthread_mutex_lock(pthread_mutex_t *);
112 int pthread_mutex_unlock(pthread_mutex_t *);
113 int pthread_mutex_trylock(pthread_mutex_t *);
114 int pthread_mutex_timedlock(pthread_mutex_t *__restrict, const struct timespec *__restrict);
115 int pthread_mutex_destroy(pthread_mutex_t *);
116 int pthread_mutex_consistent(pthread_mutex_t *);
118 int pthread_mutex_getprioceiling(const pthread_mutex_t *__restrict, int *__restrict);
119 int pthread_mutex_setprioceiling(pthread_mutex_t *__restrict, int, int *__restrict);
123 int pthread_cond_wait(pthread_cond_t *__restrict, pthread_mutex_t *__restric
[all...]
/third_party/musl/porting/liteos_m/kernel/include/
H A Dpthread.h110 int pthread_mutex_init(pthread_mutex_t *__restrict, const pthread_mutexattr_t *__restrict);
111 int pthread_mutex_lock(pthread_mutex_t *);
112 int pthread_mutex_unlock(pthread_mutex_t *);
113 int pthread_mutex_trylock(pthread_mutex_t *);
114 int pthread_mutex_timedlock(pthread_mutex_t *__restrict, const struct timespec *__restrict);
115 int pthread_mutex_destroy(pthread_mutex_t *);
116 int pthread_mutex_consistent(pthread_mutex_t *);
118 int pthread_mutex_getprioceiling(const pthread_mutex_t *__restrict, int *__restrict);
119 int pthread_mutex_setprioceiling(pthread_mutex_t *__restrict, int, int *__restrict);
123 int pthread_cond_wait(pthread_cond_t *__restrict, pthread_mutex_t *__restric
[all...]
/third_party/musl/porting/liteos_m/user/include/
H A Dpthread.h103 int pthread_mutex_init(pthread_mutex_t *__restrict, const pthread_mutexattr_t *__restrict);
104 int pthread_mutex_lock(pthread_mutex_t *);
105 int pthread_mutex_unlock(pthread_mutex_t *);
106 int pthread_mutex_trylock(pthread_mutex_t *);
107 int pthread_mutex_timedlock(pthread_mutex_t *__restrict, const struct timespec *__restrict);
108 int pthread_mutex_destroy(pthread_mutex_t *);
109 int pthread_mutex_consistent(pthread_mutex_t *);
111 int pthread_mutex_getprioceiling(const pthread_mutex_t *__restrict, int *__restrict);
112 int pthread_mutex_setprioceiling(pthread_mutex_t *__restrict, int, int *__restrict);
116 int pthread_cond_wait(pthread_cond_t *__restrict, pthread_mutex_t *__restric
[all...]
H A Dusr_lib_ops.h71 int (*pthread_mutex_init)(pthread_mutex_t *mutex, const pthread_mutexattr_t *mutexAttr);
72 int (*pthread_mutex_destroy)(pthread_mutex_t *mutex);
73 int (*pthread_mutex_timedlock)(pthread_mutex_t *mutex, const struct timespec *absTimeout);
74 int (*pthread_mutex_lock)(pthread_mutex_t *mutex);
75 int (*pthread_mutex_trylock)(pthread_mutex_t *mutex);
76 int (*pthread_mutex_unlock)(pthread_mutex_t *mutex);
84 int (*pthread_cond_timedwait)(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec *ts);
85 int (*pthread_cond_wait)(pthread_cond_t *cond, pthread_mutex_t *mutex);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dpthread.h45 typedef LosMux pthread_mutex_t; typedef
54 pthread_mutex_t* mutex; /**< Mutex locker for condition variable protection */
174 int pthread_mutex_init(pthread_mutex_t *__restrict, const pthread_mutexattr_t *__restrict);
175 int pthread_mutex_lock(pthread_mutex_t *);
176 int pthread_mutex_unlock(pthread_mutex_t *);
177 int pthread_mutex_trylock(pthread_mutex_t *);
178 int pthread_mutex_timedlock(pthread_mutex_t *__restrict, const struct timespec *__restrict);
179 int pthread_mutex_destroy(pthread_mutex_t *);
180 int pthread_mutex_consistent(pthread_mutex_t *);
182 int pthread_mutex_getprioceiling(const pthread_mutex_t *__restric
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b32/
H A Dmod.rs3 use pthread_mutex_t;
266 pub const PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
267 pthread_mutex_t {
274 pub const PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
275 pthread_mutex_t {
282 pub const PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
283 pthread_mutex_t {
290 pub const PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP: ::pthread_mutex_t =
291 pthread_mutex_t {
298 pub const PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP: ::pthread_mutex_t
[all...]
/third_party/ffmpeg/compat/
H A Dw32pthreads.h57 typedef SRWLOCK pthread_mutex_t; typedef
106 static inline int pthread_mutex_init(pthread_mutex_t *m, void* attr) in pthread_mutex_init()
111 static inline int pthread_mutex_destroy(pthread_mutex_t *m) in pthread_mutex_destroy()
116 static inline int pthread_mutex_lock(pthread_mutex_t *m) in pthread_mutex_lock()
121 static inline int pthread_mutex_unlock(pthread_mutex_t *m) in pthread_mutex_unlock()
158 static inline int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) in pthread_cond_wait()
164 static inline int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, in pthread_cond_timedwait()
H A Dos2threads.h53 typedef _fmutex pthread_mutex_t; typedef
104 static av_always_inline int pthread_mutex_init(pthread_mutex_t *mutex, in pthread_mutex_init()
112 static av_always_inline int pthread_mutex_destroy(pthread_mutex_t *mutex) in pthread_mutex_destroy()
119 static av_always_inline int pthread_mutex_lock(pthread_mutex_t *mutex) in pthread_mutex_lock()
126 static av_always_inline int pthread_mutex_unlock(pthread_mutex_t *mutex) in pthread_mutex_unlock()
171 pthread_mutex_t *mutex, in pthread_cond_timedwait()
193 pthread_mutex_t *mutex) in pthread_cond_wait()
/third_party/ffmpeg/libavutil/
H A Dthread.h65 static inline int strict_pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr) in strict_pthread_mutex_init()
79 static inline int strict_pthread_mutex_destroy(pthread_mutex_t *mutex) in strict_pthread_mutex_destroy()
84 static inline int strict_pthread_mutex_lock(pthread_mutex_t *mutex) in strict_pthread_mutex_lock()
89 static inline int strict_pthread_mutex_unlock(pthread_mutex_t *mutex) in strict_pthread_mutex_unlock()
114 static inline int strict_pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) in strict_pthread_cond_wait()
119 static inline int strict_pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, in strict_pthread_cond_timedwait()
153 #define AVMutex pthread_mutex_t
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_device.h68 pthread_mutex_t lock;
73 pthread_mutex_t lock;
79 pthread_mutex_t lock;
114 pthread_mutex_t lock;
220 pthread_mutex_t bo_map_lock;
224 pthread_mutex_t lock;
259 pthread_mutex_t submit_lock;
/third_party/ltp/include/
H A Dtst_safe_pthread.h71 pthread_mutex_t *mutex, const pthread_mutexattr_t *attr);
76 pthread_mutex_t *mutex);
81 pthread_mutex_t *mutex);
87 pthread_mutex_t *mutex);
93 pthread_mutex_t *mutex, const struct timespec *abstime);
98 pthread_mutex_t *mutex);
/third_party/rust/crates/libc/src/fuchsia/
H A Dno_align.rs24 pub struct pthread_mutex_t { structure names
77 impl PartialEq for pthread_mutex_t {
78 fn eq(&self, other: &pthread_mutex_t) -> bool { in eq()
86 impl Eq for pthread_mutex_t {}
87 impl ::fmt::Debug for pthread_mutex_t {
89 f.debug_struct("pthread_mutex_t") in fmt()
95 impl ::hash::Hash for pthread_mutex_t {

Completed in 10 milliseconds

12345678910>>...22