OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mtx1
(Results
1 - 6
of
6
) sorted by null
/external/clang/test/Analysis/
pthreadlock.c
29
pthread_mutex_t
mtx1
, mtx2;
variable
38
pthread_mutex_lock(&
mtx1
); // no-warning
44
pthread_mutex_unlock(&
mtx1
); // no-warning
50
pthread_mutex_lock(&
mtx1
); // no-warning
51
pthread_mutex_unlock(&
mtx1
); // no-warning
52
pthread_mutex_lock(&
mtx1
); // no-warning
53
pthread_mutex_unlock(&
mtx1
); // no-warning
59
pthread_mutex_lock(&
mtx1
); // no-warning
60
pthread_mutex_unlock(&
mtx1
); // no-warning
68
if (pthread_mutex_trylock(&
mtx1
) == 0) // no-warnin
[
all
...]
/external/compiler-rt/test/tsan/
mutexset3.cc
7
pthread_mutex_t
mtx1
;
variable
12
pthread_mutex_lock(&
mtx1
);
16
pthread_mutex_unlock(&
mtx1
);
36
pthread_mutex_init(&
mtx1
, 0);
43
pthread_mutex_destroy(&
mtx1
);
mutexset4.cc
7
pthread_mutex_t
mtx1
;
variable
11
pthread_mutex_lock(&
mtx1
);
15
pthread_mutex_unlock(&
mtx1
);
36
pthread_mutex_init(&
mtx1
, 0);
43
pthread_mutex_destroy(&
mtx1
);
mutexset5.cc
7
pthread_mutex_t
mtx1
;
variable
12
pthread_mutex_lock(&
mtx1
);
14
pthread_mutex_unlock(&
mtx1
);
37
pthread_mutex_init(&
mtx1
, 0);
44
pthread_mutex_destroy(&
mtx1
);
mutexset6.cc
7
pthread_mutex_t
mtx1
;
variable
13
pthread_mutex_lock(&
mtx1
);
15
pthread_mutex_unlock(&
mtx1
);
20
pthread_mutex_lock(&
mtx1
);
21
pthread_mutex_unlock(&
mtx1
);
42
pthread_mutex_init(&
mtx1
, 0);
50
pthread_mutex_destroy(&
mtx1
);
/external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector2.cc
228
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
), m->id)
382
Mutex *
mtx1
= getMutex(link.id);
local
[
all
...]
Completed in 863 milliseconds