Searched refs:mtx1 (Results 1 - 8 of 8) sorted by relevance

/external/clang/test/Analysis/
H A Dpthreadlock.c7 pthread_mutex_t mtx1, mtx2; variable
17 pthread_mutex_lock(&mtx1); // no-warning
23 pthread_mutex_unlock(&mtx1); // no-warning
29 pthread_mutex_lock(&mtx1); // no-warning
30 pthread_mutex_unlock(&mtx1); // no-warning
31 pthread_mutex_lock(&mtx1); // no-warning
32 pthread_mutex_unlock(&mtx1); // no-warning
38 pthread_mutex_lock(&mtx1); // no-warning
39 pthread_mutex_unlock(&mtx1); // no-warning
47 if (pthread_mutex_trylock(&mtx1)
[all...]
/external/compiler-rt/test/tsan/
H A Dmutexset3.cc5 pthread_mutex_t mtx1; variable
10 pthread_mutex_lock(&mtx1);
14 pthread_mutex_unlock(&mtx1);
36 pthread_mutex_init(&mtx1, 0);
43 pthread_mutex_destroy(&mtx1);
H A Dmutexset4.cc5 pthread_mutex_t mtx1; variable
9 pthread_mutex_lock(&mtx1);
13 pthread_mutex_unlock(&mtx1);
36 pthread_mutex_init(&mtx1, 0);
43 pthread_mutex_destroy(&mtx1);
H A Dmutexset5.cc5 pthread_mutex_t mtx1; variable
10 pthread_mutex_lock(&mtx1);
12 pthread_mutex_unlock(&mtx1);
37 pthread_mutex_init(&mtx1, 0);
44 pthread_mutex_destroy(&mtx1);
H A Dmutexset6.cc5 pthread_mutex_t mtx1; variable
11 pthread_mutex_lock(&mtx1);
13 pthread_mutex_unlock(&mtx1);
18 pthread_mutex_lock(&mtx1);
19 pthread_mutex_unlock(&mtx1);
42 pthread_mutex_init(&mtx1, 0);
50 pthread_mutex_destroy(&mtx1);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
H A D2-5.c72 pthread_mutex_t mtx1, mtx2; /* The two mutex m1 and m2 */ member in struct:_td
94 ret = pthread_mutex_lock(&(data.mtx1));
104 ret = pthread_cond_wait(&(data.cnd), &(data.mtx1));
106 ret = pthread_cond_timedwait(&(data.cnd), &(data.mtx1),
114 ret = pthread_mutex_trylock(&(data.mtx1));
118 ret = pthread_mutex_unlock(&(data.mtx1));
123 ret = pthread_mutex_unlock(&(data.mtx1));
127 ret = pthread_mutex_unlock(&(data.mtx1));
274 ret = pthread_mutex_init(&(data.mtx1), &ma);
318 ret = pthread_mutex_lock(&(data.mtx1));
[all...]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/
H A D2-1.c209 pthread_mutex_t mtx1; member in struct:__anon14002
225 ret = pthread_mutex_lock(&td->mtx1);
247 ret = pthread_cond_timedwait(&td->cnd, &td->mtx1, &ts);
249 ret = pthread_cond_wait(&td->cnd, &td->mtx1);
264 ret = pthread_mutex_unlock(&td->mtx1);
510 ret = pthread_mutex_init(&td->mtx1, &ma);
571 ret = pthread_mutex_lock(&td->mtx1);
578 ret = pthread_mutex_unlock(&td->mtx1);
585 ret = pthread_mutex_lock(&td->mtx1);
613 ret = pthread_mutex_unlock(&td->mtx1);
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cc228 Mutex *mtx1 = getMutex(id1); local
229 SpinMutexLock l(&mtx1->mtx);
230 if (mtx1->nlink == kMaxLink) {
235 for (; li < mtx1->nlink; li++) {
236 Link *link = &mtx1->link[li];
245 cb->lt->ctx, getMutexId(mtx1), m->id);
250 if (li == mtx1->nlink) {
252 Link *link = &mtx1->link[mtx1->nlink++];
260 cb->lt->ctx, getMutexId(mtx1),
382 Mutex *mtx1 = getMutex(link.id); local
[all...]

Completed in 182 milliseconds