OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pthread_mutex_trylock
(Results
1 - 25
of
471
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/hardware/broadcom/wlan/bcmdhd/wifi_hal/
sync.h
19
return
pthread_mutex_trylock
(&mMutex);
/external/clang/test/Analysis/Inputs/
system-header-simulator-for-pthread-lock.h
22
extern int
pthread_mutex_trylock
(pthread_mutex_t *);
/external/valgrind/drd/tests/
recursive_mutex.c
15
if (
pthread_mutex_trylock
(p) != 0)
17
if (
pthread_mutex_trylock
(p) != 0)
recursive_mutex.stderr.exp-darwin
10
at 0x........:
pthread_mutex_trylock
(drd_pthread_intercepts.c:?)
recursive_mutex.stderr.exp-solaris
11
at 0x........:
pthread_mutex_trylock
(drd_pthread_intercepts.c:?)
trylock.stderr.exp
16
Locking mutex via
pthread_mutex_trylock
().
trylock.c
64
fprintf(stderr, "Locking mutex via
pthread_mutex_trylock
().\n");
65
r =
pthread_mutex_trylock
(&mutex); assert(r == 0);
filter_stderr_solaris
30
'mutex_trylock' => '
pthread_mutex_trylock
',
recursive_mutex.stderr.exp-linux
25
at 0x........:
pthread_mutex_trylock
(drd_pthread_intercepts.c:?)
/external/compiler-rt/test/tsan/Linux/
mutex_robust2.cc
25
if (
pthread_mutex_trylock
(&m) != EOWNERDEAD) {
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
spinlock_pt.hpp
36
return
pthread_mutex_trylock
( &v_ ) == 0;
/external/libchrome/base/synchronization/
lock_impl_posix.cc
39
int rv =
pthread_mutex_trylock
(&native_handle_);
/external/sfntly/cpp/src/sfntly/port/
lock.cc
59
return (
pthread_mutex_trylock
(&os_lock_) == 0);
/external/valgrind/helgrind/tests/
filter_stderr_solaris
25
'mutex_trylock' => '
pthread_mutex_trylock
',
/system/core/liblog/
logger_lock.c
45
return
pthread_mutex_trylock
(&log_init_lock);
/bionic/libc/bionic/
flockfile.cpp
51
return
pthread_mutex_trylock
(&_FLOCK(fp));
/external/clang/test/Analysis/
pthreadlock.c
47
if (
pthread_mutex_trylock
(&mtx1) == 0) // no-warning
77
if (
pthread_mutex_trylock
(&mtx1) == 0) // no-warning
84
if (
pthread_mutex_trylock
(&mtx1) != 0) // no-warning
208
if (
pthread_mutex_trylock
(&mtx1)) // no-warning
/hardware/qcom/wlan/qcwcn/wifi_hal/
sync.h
34
return
pthread_mutex_trylock
(&mMutex);
/external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc
60
INTERCEPTOR(int,
pthread_mutex_trylock
, pthread_mutex_t *m) {
62
int res = REAL(
pthread_mutex_trylock
)(m);
301
INTERCEPT_FUNCTION(
pthread_mutex_trylock
);
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
Mutex.cpp
119
int res =
pthread_mutex_trylock
(&mMutex);
/external/v8/src/base/platform/
mutex.cc
71
int result =
pthread_mutex_trylock
(mutex);
/packages/apps/Nfc/nci/jni/
Mutex.cpp
116
int res =
pthread_mutex_trylock
(&mMutex);
/development/ndk/platforms/android-5/include/
pthread.h
171
int
pthread_mutex_trylock
(pthread_mutex_t *mutex);
217
* before returning. same return values than
pthread_mutex_trylock
though, i.e.
/development/ndk/platforms/android-8/include/
pthread.h
171
int
pthread_mutex_trylock
(pthread_mutex_t *mutex);
222
* before returning. same return values than
pthread_mutex_trylock
though, i.e.
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_test.cc
44
if (
pthread_mutex_trylock
(&incrementer_thread_exit_mutex) == 0) {
133
if (
pthread_mutex_trylock
(&advanced_incrementer_thread_exit_mutex) == 0) {
Completed in 271 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>