| /external/clang/test/Analysis/ |
| D | pthreadlock.c | 21 extern int pthread_mutex_trylock(pthread_mutex_t *); 68 if (pthread_mutex_trylock(&mtx1) == 0) // no-warning in ok5() 98 if (pthread_mutex_trylock(&mtx1) == 0) // no-warning in ok9() 105 if (pthread_mutex_trylock(&mtx1) != 0) // no-warning in ok10() 214 if (pthread_mutex_trylock(&mtx1)) // no-warning in bad4()
|
| /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
| D | pthread_rwlock_trywrlock.c | 76 if ((result = pthread_mutex_trylock (&(rwl->mtxExclusiveAccess))) != 0) in pthread_rwlock_trywrlock() 82 pthread_mutex_trylock (&(rwl->mtxSharedAccessCompleted))) != 0) in pthread_rwlock_trywrlock()
|
| D | pthread_spin_trylock.c | 73 return pthread_mutex_trylock (&(s->u.mutex)); in pthread_spin_trylock()
|
| D | pthread_rwlock_tryrdlock.c | 76 if ((result = pthread_mutex_trylock (&(rwl->mtxExclusiveAccess))) != 0) in pthread_rwlock_tryrdlock()
|
| D | pthread_mutex_destroy.c | 58 result = pthread_mutex_trylock (&mx); in pthread_mutex_destroy()
|
| D | pthread_mutex_trylock.c | 42 pthread_mutex_trylock (pthread_mutex_t * mutex) in pthread_mutex_trylock() function
|
| /external/valgrind/main/drd/tests/ |
| D | recursive_mutex.c | 15 if (pthread_mutex_trylock(p) != 0) in lock_twice() 17 if (pthread_mutex_trylock(p) != 0) in lock_twice()
|
| D | recursive_mutex.stderr.exp-darwin | 10 at 0x........: pthread_mutex_trylock (drd_pthread_intercepts.c:?)
|
| D | trylock.stderr.exp | 16 Locking mutex via pthread_mutex_trylock().
|
| /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/ |
| D | _pth.h | 54 #define _PT_PTHREAD_MUTEX_IS_LOCKED(m) (0 == pthread_mutex_trylock(&(m))) 84 #define _PT_PTHREAD_MUTEX_IS_LOCKED(m) (EBUSY == pthread_mutex_trylock(&(m))) 93 #define _PT_PTHREAD_MUTEX_IS_LOCKED(m) (EBUSY == pthread_mutex_trylock(&(m)))
|
| /external/compiler-rt/lib/sanitizer_common/tests/ |
| D | sanitizer_stoptheworld_test.cc | 44 if (pthread_mutex_trylock(&incrementer_thread_exit_mutex) == 0) { in IncrementerThread() 133 if (pthread_mutex_trylock(&advanced_incrementer_thread_exit_mutex) == 0) { in AdvancedIncrementerThread()
|
| /external/libcxx/src/ |
| D | mutex.cpp | 38 return pthread_mutex_trylock(&__m_) == 0; in try_lock() 106 return pthread_mutex_trylock(&__m_) == 0; in try_lock()
|
| /external/compiler-rt/test/tsan/ |
| D | mutex_robust2.cc | 25 if (pthread_mutex_trylock(&m) != EOWNERDEAD) { in main()
|
| /external/chromium_org/third_party/sqlite/src/src/ |
| D | mutex_unix.c | 270 }else if( pthread_mutex_trylock(&p->mutex)==0 ){ in pthreadMutexTry() 282 if( pthread_mutex_trylock(&p->mutex)==0 ){ in pthreadMutexTry()
|
| /external/chromium_org/third_party/libusb/src/libusb/os/ |
| D | threads_posix.h | 35 #define usbi_mutex_trylock pthread_mutex_trylock
|
| /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/ |
| D | lock.cc | 59 return (pthread_mutex_trylock(&os_lock_) == 0);
|
| /external/sfntly/cpp/src/sfntly/port/ |
| D | lock.cc | 59 return (pthread_mutex_trylock(&os_lock_) == 0);
|
| /external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
| D | Mutex.cpp | 118 int res = pthread_mutex_trylock (&mMutex); in tryLock()
|
| /external/compiler-rt/lib/tsan/dd/ |
| D | dd_interceptors.cc | 60 INTERCEPTOR(int, pthread_mutex_trylock, pthread_mutex_t *m) { in INTERCEPTOR() argument 62 int res = REAL(pthread_mutex_trylock)(m); in INTERCEPTOR() 301 INTERCEPT_FUNCTION(pthread_mutex_trylock); in InitializeInterceptors()
|
| /external/chromium_org/mojo/public/cpp/utility/lib/ |
| D | mutex.cc | 42 int rv = pthread_mutex_trylock(&mutex_); in TryLock()
|
| /external/chromium_org/mojo/public/cpp/utility/ |
| D | mutex.h | 34 bool TryLock() { return pthread_mutex_trylock(&mutex_) == 0; } in TryLock()
|
| /external/chromium_org/rlz/lib/ |
| D | recursive_cross_process_lock_posix.cc | 25 if (pthread_mutex_trylock(&recursive_lock_) == EBUSY) { in TryGetCrossProcessLock()
|
| /external/chromium_org/base/synchronization/ |
| D | lock_impl_posix.cc | 39 int rv = pthread_mutex_trylock(&native_handle_); in Try()
|
| /external/llvm/test/Linker/ |
| D | 2011-08-22-ResolveAlias.ll | 21 …_mutex_trylockP15pthread_mutex_t = alias weak i32 (%union.pthread_mutex_t*)* @pthread_mutex_trylock 59 declare extern_weak i32 @pthread_mutex_trylock(%union.pthread_mutex_t*)
|
| /external/lldb/tools/debugserver/source/ |
| D | PThreadMutex.cpp | 67 if (::pthread_mutex_trylock (m_pMutex) != 0) in Lock()
|