OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pthread_mutex_destroy
(Results
1 - 25
of
1316
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/pthread_h/
15-1-buildonly.c
10
int
pthread_mutex_destroy
(pthread_mutex_t *);
20
pthread_mutex_destroy
(&a);
/hardware/broadcom/wlan/bcmdhd/wifi_hal/
sync.h
16
pthread_mutex_destroy
(&mMutex);
42
pthread_mutex_destroy
(&mMutex);
/external/compiler-rt/test/tsan/
mutex_destroy_locked.cc
9
pthread_mutex_destroy
(&m);
14
// CHECK: #0
pthread_mutex_destroy
longjmp3.cc
27
pthread_mutex_destroy
(&mtx);
48
// CHECK: #0
pthread_mutex_destroy
race_on_mutex2.c
18
pthread_mutex_destroy
(&Mtx);
longjmp4.cc
30
pthread_mutex_destroy
(&mtx);
51
// CHECK: #0
pthread_mutex_destroy
must_deadlock.cc
46
pthread_mutex_destroy
(&mu1);
47
pthread_mutex_destroy
(&mu2);
mutex_cycle2.c
32
pthread_mutex_destroy
(&mu1);
33
pthread_mutex_destroy
(&mu2);
mutexset3.cc
43
pthread_mutex_destroy
(&mtx1);
44
pthread_mutex_destroy
(&mtx2);
mutexset4.cc
43
pthread_mutex_destroy
(&mtx1);
44
pthread_mutex_destroy
(&mtx2);
mutexset5.cc
44
pthread_mutex_destroy
(&mtx1);
45
pthread_mutex_destroy
(&mtx2);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_destroy/
coverage.txt
1
This document defines the coverage for the
pthread_mutex_destroy
function:
2-1.c
8
* Test
pthread_mutex_destroy
() that
28
if (
pthread_mutex_destroy
(&mutex) != 0) {
1-1.c
8
* Test that
pthread_mutex_destroy
()
53
if ((rc =
pthread_mutex_destroy
(&mutex1)) != 0) {
60
if ((rc =
pthread_mutex_destroy
(&mutex2)) != 0) {
67
if ((rc =
pthread_mutex_destroy
(&mutex3)) != 0) {
assertions.xml
5
int
pthread_mutex_destroy
(pthread_mutex_t *mutex);
8
becomes uninitialized. An implementation may cause
pthread_mutex_destroy
()
20
pthread_mutex_destroy
() may fail if:
/external/valgrind/helgrind/tests/
cond_timedwait_test.c
16
pthread_mutex_destroy
(&mutex);
tc13_laog1.c
29
r =
pthread_mutex_destroy
( &mx1 );
30
r =
pthread_mutex_destroy
( &mx2 );
tc15_laog_lockdel.c
46
pthread_mutex_destroy
( mx2 );
61
r =
pthread_mutex_destroy
( mx1 );
62
r =
pthread_mutex_destroy
( mx2 );
73
"
pthread_mutex_destroy
( mx2 );" at line 46 is commented out. In
76
preceding "
pthread_mutex_destroy
( mx2 );" is not observed. I don't
locked_vs_unlocked2.c
32
r=
pthread_mutex_destroy
(&mx1a); assert(!r);
68
r=
pthread_mutex_destroy
(&mx1b); assert(!r);
69
r=
pthread_mutex_destroy
(&mx2a); assert(!r);
70
r=
pthread_mutex_destroy
(&mx2b); assert(!r);
/external/clang/test/Analysis/
pthreadlock.c
92
pthread_mutex_destroy
(&mtx1); // no-warning
98
pthread_mutex_destroy
(&mtx1); // no-warning
99
pthread_mutex_destroy
(&mtx2); // no-warning
106
pthread_mutex_destroy
(&mtx1); // no-warning
113
pthread_mutex_destroy
(&mtx1); // no-warning
115
pthread_mutex_destroy
(&mtx2); // no-warning
123
pthread_mutex_destroy
(&mtx1); // no-warning
142
pthread_mutex_destroy
(&mtx1); // no-warning
149
pthread_mutex_destroy
(&mtx1); // no-warning
151
pthread_mutex_destroy
(&mtx2); // no-warnin
[
all
...]
/external/valgrind/drd/tests/
pth_process_shared_mutex.c
25
pthread_mutex_destroy
(&mutex);
recursive_mutex.c
33
pthread_mutex_destroy
(&m);
47
pthread_mutex_destroy
(&m);
61
pthread_mutex_destroy
(&m);
pth_mutex_reinit.c
31
pthread_mutex_destroy
(&m);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_destroy/speculative/
4-2.c
8
* Test that when a
pthread_mutex_destroy
is called on a
26
#define FUNCTION "
pthread_mutex_destroy
"
42
rc =
pthread_mutex_destroy
(&mutex);
/external/clang/test/Analysis/Inputs/
system-header-simulator-for-pthread-lock.h
23
extern int
pthread_mutex_destroy
(pthread_mutex_t *);
Completed in 161 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>