OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pthread_rwlock_wrlock
(Results
76 - 100
of
151
) sorted by null
1
2
3
4
5
6
7
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
pthread.h
256
int
pthread_rwlock_wrlock
(pthread_rwlock_t *rwlock);
/development/ndk/sources/android/libportable/arch-mips/
pthread.c
242
PTHREAD_WRAPPER(
pthread_rwlock_wrlock
, (pthread_rwlock_t *rwlock), (rwlock), "(rwlock:%p)");
/external/valgrind/unittest/
thread_wrappers_pthread.h
244
void Lock() { CHECK(0 ==
pthread_rwlock_wrlock
(&mu_)); }
/external/valgrind/main/helgrind/
hg_intercepts.c
[
all
...]
/external/ceres-solver/internal/ceres/
mutex.h
234
void Mutex::Lock() { CERES_SAFE_PTHREAD(
pthread_rwlock_wrlock
); }
/external/chromium/sdch/open-vcdiff/src/
mutex.h
225
void Mutex::Lock() { SAFE_PTHREAD(
pthread_rwlock_wrlock
); }
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
simple_mutex.h
249
void Mutex::Lock() { SAFE_PTHREAD(
pthread_rwlock_wrlock
); }
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
simple_mutex.h
249
void Mutex::Lock() { SAFE_PTHREAD(
pthread_rwlock_wrlock
); }
/external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc
1018
TSAN_INTERCEPTOR(int,
pthread_rwlock_wrlock
, void *m) {
1019
SCOPED_TSAN_INTERCEPTOR(
pthread_rwlock_wrlock
, m);
1020
int res = REAL(
pthread_rwlock_wrlock
)(m);
[
all
...]
tsan_stat.cc
167
name[StatInt_pthread_rwlock_wrlock] = "
pthread_rwlock_wrlock
";
/external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_linux.cc
143
CHECK_EQ(
pthread_rwlock_wrlock
((pthread_rwlock_t*)mtx_), 0);
/external/open-vcdiff/gflags/src/
mutex.h
263
void Mutex::Lock() { SAFE_PTHREAD(
pthread_rwlock_wrlock
); }
/external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h
303
void Lock() { CHECK(0 ==
pthread_rwlock_wrlock
(&mu_)); }
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libpthread-2.7.so
libpthread.so.0
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/
libpthread-2.7.so
libpthread.so.0
/external/bison/lib/glthread/
lock.h
130
# pragma weak
pthread_rwlock_wrlock
macro
195
(pthread_in_use () ?
pthread_rwlock_wrlock
(LOCK) : 0)
[
all
...]
lock.c
98
return
pthread_rwlock_wrlock
(&lock->rwlock);
/art/runtime/base/
mutex.cc
572
CHECK_MUTEX_CALL(
pthread_rwlock_wrlock
, (&rwlock_));
/external/stressapptest/src/
worker.h
163
sat_assert(0 ==
pthread_rwlock_wrlock
(&status_rwlock_));
/prebuilts/sdk/renderscript/lib/x86/
libc.so
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread.h
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
pthread.h
870
extern int
pthread_rwlock_wrlock
(pthread_rwlock_t *__rwlock)
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
pthread.h
870
extern int
pthread_rwlock_wrlock
(pthread_rwlock_t *__rwlock)
[
all
...]
Completed in 663 milliseconds
1
2
3
4
5
6
7