OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pthread_rwlock_timedwrlock
(Results
1 - 13
of
13
) sorted by null
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedwrlock/
5-1.c
7
* Test that
pthread_rwlock_timedwrlock
(pthread_rwlock_t *rwlock)
15
* 2. Child thread lock 'rwlock' for writing with
pthread_rwlock_timedwrlock
(),
19
* 5. The child thread lock 'rwlock' for write, with
pthread_rwlock_timedwrlock
(),
21
* 6. The thread call
pthread_rwlock_timedwrlock
(). Should not get ETIMEDOUT.
66
rc =
pthread_rwlock_timedwrlock
(&rwlock, &abs_timeout);
79
printf("thread1: Error in
pthread_rwlock_timedwrlock
().\n");
110
rc =
pthread_rwlock_timedwrlock
(&rwlock, &abs_timeout);
123
printf("thread2: Error in
pthread_rwlock_timedwrlock
().\n");
2-1.c
7
* Test that
pthread_rwlock_timedwrlock
(pthread_rwlock_t *rwlock)
20
* 4. The thread locks 'rwlock' for writing, using
pthread_rwlock_timedwrlock
(). Should
67
rc =
pthread_rwlock_timedwrlock
(&rwlock, &abs_timeout);
82
("Error in
pthread_rwlock_timedwrlock
(), error code:%d.\n",
6-1.c
6
* Test
pthread_rwlock_timedwrlock
(pthread_rwlock_t * rwlock)
9
* a thread blocked on a read-write lock via a call to
pthread_rwlock_timedwrlock
(),
94
rc =
pthread_rwlock_timedwrlock
(&rwlock, &abs_timeout);
96
printf("sig_thread:
pthread_rwlock_timedwrlock
returns %d\n",
6-2.c
6
* Test
pthread_rwlock_timedwrlock
(pthread_rwlock_t * rwlock)
9
* a thread blocked on a read-write lock via a call to
pthread_rwlock_timedwrlock
(),
20
* for a period that the specified 'timeout' for
pthread_rwlock_timedwrlock
()
104
rc =
pthread_rwlock_timedwrlock
(&rwlock, &abs_timeout);
112
printf("Error %d at
pthread_rwlock_timedwrlock
()\n", rc);
1-1.c
7
* Test that
pthread_rwlock_timedwrlock
(pthread_rwlock_t *rwlock)
9
*
pthread_rwlock_timedwrlock
() function shall apply a write lock to the
17
* 3. Thread0 does
pthread_rwlock_timedwrlock
(), should get the lock successfully then unlock.
20
* using
pthread_rwlock_timedwrlock
(), should block, but when the timer expires,
24
* 8. Create child thread to lock 'rwlock' for writing, using
pthread_rwlock_timedwrlock
,
67
rc =
pthread_rwlock_timedwrlock
(&rwlock, &timeout);
3-1.c
7
* Test that
pthread_rwlock_timedwrlock
(pthread_rwlock_t *rwlock)
9
*
pthread_rwlock_timedwrlock
() function shall apply a write lock to the
17
* 3. Thread0 does
pthread_rwlock_timedwrlock
(), should get the lock successfully then unlock.
20
* using
pthread_rwlock_timedwrlock
(), should block, but when the timer expires,
24
* 8. Create child thread to lock 'rwlock' for writing, using
pthread_rwlock_timedwrlock
,
77
rc =
pthread_rwlock_timedwrlock
(&rwlock, &timeout);
/external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc
147
INTERCEPTOR(int,
pthread_rwlock_timedwrlock
, pthread_rwlock_t *m,
150
int res = REAL(
pthread_rwlock_timedwrlock
)(m, abstime);
312
INTERCEPT_FUNCTION(
pthread_rwlock_timedwrlock
);
/bionic/libc/bionic/
pthread_rwlock.cpp
445
int
pthread_rwlock_timedwrlock
(pthread_rwlock_t* rwlock_interface, const timespec* abs_timeout) {
function
/bionic/libc/include/
pthread.h
236
int
pthread_rwlock_timedwrlock
(pthread_rwlock_t* __rwlock, const struct timespec* __timeout);
/bionic/tests/headers/posix/
pthread_h.c
183
FUNCTION(
pthread_rwlock_timedwrlock
, int (*f)(pthread_rwlock_t*, const struct timespec*));
/external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc
[
all
...]
/art/runtime/base/
mutex.cc
685
int result =
pthread_rwlock_timedwrlock
(&rwlock_, &ts);
691
PLOG(FATAL) << "
pthread_rwlock_timedwrlock
failed for " << name_;
[
all
...]
/bionic/tests/
pthread_test.cpp
977
return
pthread_rwlock_timedwrlock
(lock, &ts);
[
all
...]
Completed in 1343 milliseconds