Searched refs:pthread_mutex_trylock (Results 1 - 25 of 63) sorted by relevance

123

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_rwlock_trywrlock.c76 if ((result = pthread_mutex_trylock (&(rwl->mtxExclusiveAccess))) != 0)
82 pthread_mutex_trylock (&(rwl->mtxSharedAccessCompleted))) != 0)
H A Dpthread_spin_trylock.c73 return pthread_mutex_trylock (&(s->u.mutex));
H A Dpthread_mutex_destroy.c58 result = pthread_mutex_trylock (&mx);
108 mx->recursive_count--; /* Undo effect of pthread_mutex_trylock() above */
H A Dpthread_rwlock_tryrdlock.c76 if ((result = pthread_mutex_trylock (&(rwl->mtxExclusiveAccess))) != 0)
H A Dpthread_cond_destroy.c150 if ((result = pthread_mutex_trylock (&(cv->mtxUnblockLock))) != 0)
H A Dpthread_mutex_trylock.c2 * pthread_mutex_trylock.c
42 pthread_mutex_trylock (pthread_mutex_t * mutex) function
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dthreads_posix.h35 #define usbi_mutex_trylock pthread_mutex_trylock
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Dlock.cc59 return (pthread_mutex_trylock(&os_lock_) == 0);
/external/compiler-rt/test/tsan/
H A Dmutex_robust2.cc25 if (pthread_mutex_trylock(&m) != EOWNERDEAD) {
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DMutex.cpp118 int res = pthread_mutex_trylock (&mMutex);
/external/sfntly/cpp/src/sfntly/port/
H A Dlock.cc59 return (pthread_mutex_trylock(&os_lock_) == 0);
/external/valgrind/main/drd/tests/
H A Drecursive_mutex.c15 if (pthread_mutex_trylock(p) != 0)
17 if (pthread_mutex_trylock(p) != 0)
H A Dtrylock.stderr.exp16 Locking mutex via pthread_mutex_trylock().
/external/chromium_org/mojo/public/cpp/utility/lib/
H A Dmutex.cc42 int rv = pthread_mutex_trylock(&mutex_);
/external/chromium_org/mojo/public/cpp/utility/
H A Dmutex.h34 bool TryLock() { return pthread_mutex_trylock(&mutex_) == 0; }
/external/clang/test/Analysis/
H A Dpthreadlock.c21 extern int pthread_mutex_trylock(pthread_mutex_t *);
68 if (pthread_mutex_trylock(&mtx1) == 0) // no-warning
98 if (pthread_mutex_trylock(&mtx1) == 0) // no-warning
105 if (pthread_mutex_trylock(&mtx1) != 0) // no-warning
214 if (pthread_mutex_trylock(&mtx1)) // no-warning
/external/chromium_org/base/synchronization/
H A Dlock_impl_posix.cc39 int rv = pthread_mutex_trylock(&native_handle_);
/external/chromium_org/rlz/lib/
H A Drecursive_cross_process_lock_posix.cc25 if (pthread_mutex_trylock(&recursive_lock_) == EBUSY) {
/external/deqp/framework/delibs/dethread/unix/
H A DdeMutexUnix.c112 return (pthread_mutex_trylock((pthread_mutex_t*)mutex) == 0);
/external/lldb/tools/debugserver/source/
H A DPThreadMutex.cpp67 if (::pthread_mutex_trylock (m_pMutex) != 0)
69 fprintf(stdout, "::pthread_mutex_trylock (%8.8p) mutex is locked (function %s in %s:%i), waiting...\n", m_pMutex, m_function, m_file, m_line);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DThreadingPthreads.cpp160 int result = pthread_mutex_trylock(&m_mutex.m_internalMutex);
179 int result = pthread_mutex_trylock(&m_mutex.m_internalMutex);
/external/chromium_org/third_party/sqlite/src/src/
H A Dmutex_unix.c270 }else if( pthread_mutex_trylock(&p->mutex)==0 ){
282 if( pthread_mutex_trylock(&p->mutex)==0 ){
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stoptheworld_test.cc44 if (pthread_mutex_trylock(&incrementer_thread_exit_mutex) == 0) {
133 if (pthread_mutex_trylock(&advanced_incrementer_thread_exit_mutex) == 0) {
/external/libcxx/src/
H A Dmutex.cpp38 return pthread_mutex_trylock(&__m_) == 0;
106 return pthread_mutex_trylock(&__m_) == 0;
/external/llvm/lib/Support/
H A DMutex.cpp109 int errorcode = pthread_mutex_trylock(mutex);

Completed in 1447 milliseconds

123