OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pthread_rwlock_trywrlock
(Results
126 - 150
of
238
) sorted by null
1
2
3
4
5
6
7
8
9
10
/prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/
pthread.h
259
int
pthread_rwlock_trywrlock
(pthread_rwlock_t *rwlock);
/prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/
pthread.h
259
int
pthread_rwlock_trywrlock
(pthread_rwlock_t *rwlock);
/prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/
pthread.h
227
int
pthread_rwlock_trywrlock
(pthread_rwlock_t*) __nonnull((1));
/prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/
pthread.h
227
int
pthread_rwlock_trywrlock
(pthread_rwlock_t*) __nonnull((1));
/prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/
pthread.h
227
int
pthread_rwlock_trywrlock
(pthread_rwlock_t*) __nonnull((1));
/prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/
pthread.h
227
int
pthread_rwlock_trywrlock
(pthread_rwlock_t*) __nonnull((1));
/prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/
pthread.h
227
int
pthread_rwlock_trywrlock
(pthread_rwlock_t*) __nonnull((1));
/prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/
pthread.h
227
int
pthread_rwlock_trywrlock
(pthread_rwlock_t*) __nonnull((1));
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/
pthread.h
259
int
pthread_rwlock_trywrlock
(pthread_rwlock_t *rwlock);
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
pthread.h
259
int
pthread_rwlock_trywrlock
(pthread_rwlock_t *rwlock);
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
pthread.h
259
int
pthread_rwlock_trywrlock
(pthread_rwlock_t *rwlock);
/bionic/tests/
pthread_test.cpp
644
ASSERT_EQ(0,
pthread_rwlock_trywrlock
(&l));
645
ASSERT_EQ(EBUSY,
pthread_rwlock_trywrlock
(&l));
652
ASSERT_EQ(EBUSY,
pthread_rwlock_trywrlock
(&l));
/bionic/libc/bionic/
pthread_rwlock.cpp
228
int
pthread_rwlock_trywrlock
(pthread_rwlock_t* rwlock) {
function
/development/ndk/sources/android/libportable/arch-mips/
pthread.c
241
PTHREAD_WRAPPER(
pthread_rwlock_trywrlock
, (pthread_rwlock_t *rwlock), (rwlock), "(rwlock:%p)");
/external/clang/lib/StaticAnalyzer/Checkers/
PthreadLockChecker.cpp
104
FName == "
pthread_rwlock_trywrlock
")
/external/valgrind/main/helgrind/
hg_intercepts.c
[
all
...]
/external/ceres-solver/internal/ceres/
mutex.h
242
pthread_rwlock_trywrlock
(&mutex_) == 0 :
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
simple_mutex.h
252
pthread_rwlock_trywrlock
(&mutex_) == 0 : true; }
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
simple_mutex.h
252
pthread_rwlock_trywrlock
(&mutex_) == 0 : true; }
/external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc
[
all
...]
/external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_linux.cc
153
return
pthread_rwlock_trywrlock
((pthread_rwlock_t*)mtx_) == 0;
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/lib32/
libpthread-2.11.1.so
libpthread.so.0
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/lib32/
libpthread-2.11.1.so
libpthread.so.0
Completed in 763 milliseconds
1
2
3
4
5
6
7
8
9
10