OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pthread_rwlock_wrlock
(Results
1 - 25
of
54
) sorted by null
1
2
3
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_wrlock/
3-1.c
7
* Test
pthread_rwlock_wrlock
(pthread_rwlock_t *rwlock)
14
* 2. Perform a write lock via
pthread_rwlock_wrlock
()
15
* 3. Perform a write lock _again_ with
pthread_rwlock_wrlock
without first unlocking rwlock()
40
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
41
printf("Error at
pthread_rwlock_wrlock
()\n");
50
rc =
pthread_rwlock_wrlock
(&rwlock);
52
/* Clean up before we test the return value of
pthread_rwlock_wrlock
() */
1-1.c
7
* Test
pthread_rwlock_wrlock
(pthread_rwlock_t *rwlock)
51
rc =
pthread_rwlock_wrlock
(&rwlock);
61
("Test FAILED: Error in
pthread_rwlock_wrlock
(), error code: %d\n",
143
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
2-1.c
6
* Test
pthread_rwlock_wrlock
(pthread_rwlock_t * rwlock)
71
rc =
pthread_rwlock_wrlock
(&rwlock);
74
("Test FAILED: sig_thread: Error at
pthread_rwlock_wrlock
(), error code:%d\n",
102
rc =
pthread_rwlock_wrlock
(&rwlock);
105
("main: Error at
pthread_rwlock_wrlock
(), error code:%d\n",
/bionic/libc/private/
ScopedRWLock.h
38
(write ?
pthread_rwlock_wrlock
: pthread_rwlock_rdlock)(rwlock_);
/external/compiler-rt/test/tsan/
bench_rwmutex.cc
20
pthread_rwlock_wrlock
(&mtx);
/external/webrtc/webrtc/system_wrappers/source/
rw_lock_posix.cc
36
pthread_rwlock_wrlock
(&lock_);
/external/libunwind_llvm/src/
RWMutex.hpp
65
bool lock() { return
pthread_rwlock_wrlock
(&_lock) == 0; }
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_unlock/
2-1.c
50
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
81
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
82
printf("main: Error at
pthread_rwlock_wrlock
()\n");
3-1.c
120
rc =
pthread_rwlock_wrlock
(&rwlock);
157
rc =
pthread_rwlock_wrlock
(&rwlock);
205
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
1-1.c
89
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_init/
3-1.c
59
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
/external/boringssl/src/crypto/
thread_pthread.c
43
if (
pthread_rwlock_wrlock
((pthread_rwlock_t *) lock) != 0) {
71
if (
pthread_rwlock_wrlock
(&lock->lock) != 0) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedrdlock/
2-1.c
100
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
101
printf("Error at
pthread_rwlock_wrlock
()\n");
1-1.c
143
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
3-1.c
157
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
6-1.c
119
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
120
printf("main: Error at
pthread_rwlock_wrlock
()\n");
6-2.c
133
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
134
printf("
pthread_rwlock_wrlock
()\n");
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedwrlock/
2-1.c
16
* 2. Main thread locks 'rwlock' for writing with
pthread_rwlock_wrlock
()
104
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
105
printf("Error at
pthread_rwlock_wrlock
()\n");
/external/llvm/lib/Support/
RWMutex.cpp
102
int errorcode =
pthread_rwlock_wrlock
(rwlock);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_rdlock/
1-1.c
130
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
4-1.c
100
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
101
printf("main: Error at
pthread_rwlock_wrlock
()\n");
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_tryrdlock/
1-1.c
149
if (
pthread_rwlock_wrlock
(&rwlock) != 0) {
/external/swiftshader/third_party/LLVM/lib/Support/
RWMutex.cpp
130
int errorcode =
pthread_rwlock_wrlock
(rwlock);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
RWMutex.cpp
104
int errorcode =
pthread_rwlock_wrlock
(rwlock);
/external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc
131
INTERCEPTOR(int,
pthread_rwlock_wrlock
, pthread_rwlock_t *m) {
134
int res = REAL(
pthread_rwlock_wrlock
)(m);
310
INTERCEPT_FUNCTION(
pthread_rwlock_wrlock
);
Completed in 207 milliseconds
1
2
3