OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lck1
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/Analysis/
pthreadlock.c
9
lck_mtx_t
lck1
, lck2;
variable
54
lck_mtx_lock(&
lck1
); // no-warning
60
if (lck_mtx_try_lock(&
lck1
) != 0) // no-warning
61
lck_mtx_unlock(&
lck1
); // no-warning
217
lck_mtx_lock(&
lck1
); // no-warning
218
lck_mtx_lock(&
lck1
); // expected-warning{{This lock has already been acquired}}
224
lck_mtx_lock(&
lck1
); // no-warning
225
lck_mtx_unlock(&
lck1
); // no-warning
226
lck_mtx_lock(&
lck1
); // no-warning
227
lck_mtx_lock(&
lck1
); // expected-warning{{This lock has already been acquired}
[
all
...]
/external/clang/www/analyzer/
alpha_checks.html
685
lck_mtx_t
lck1
, lck2;
688
lck_mtx_lock(&
lck1
);
690
lck_mtx_unlock(&
lck1
);
695
lck_mtx_t
lck1
, lck2;
698
if (lck_mtx_try_lock(&
lck1
) == 0)
702
lck_mtx_unlock(&
lck1
);
Completed in 312 milliseconds