HomeSort by relevance Sort by last modified time
    Searched refs:pthread_equal (Results 1 - 25 of 225) sorted by null

1 2 3 4 5 6 7 8 9

  /bionic/libc/bionic/
pthread_equal.cpp 31 int pthread_equal(pthread_t lhs, pthread_t rhs) { function
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_equal.c 2 * pthread_equal.c
42 pthread_equal (pthread_t t1, pthread_t t2) function
76 } /* pthread_equal */
pthread_mutex_trylock.c 86 pthread_equal (mx->ownerThread, pthread_self ()))
131 pthread_equal (mx->ownerThread, pthread_self ()))
pthread_mutex_unlock.c 87 if (pthread_equal (mx->ownerThread, pthread_self()))
121 if (pthread_equal (mx->ownerThread, self))
pthread_join.c 119 else if (pthread_equal (self, thread))
pthread_mutex_lock.c 110 if (pthread_equal (mx->ownerThread, self))
217 if (pthread_equal (mx->ownerThread, self))
pthread_cancel.c 122 cancel_self = pthread_equal (thread, self);
pthread_mutex_timedlock.c 170 if (pthread_equal (mx->ownerThread, self))
275 if (pthread_equal (mx->ownerThread, self))
  /external/chromium_org/third_party/skia/src/ports/
SkMutex_pthread.h 26 SkASSERT(0 == pthread_equal(fOwner, pthread_self())); // SkMutex is not re-entrant
36 SkASSERT(0 != pthread_equal(fOwner, pthread_self()));
  /frameworks/wilhelm/src/itf/
IThreadSync.c 30 if (!pthread_equal(thiz->mOwner, pthread_self())) {
56 if (!thiz->mInCriticalSection || !pthread_equal(thiz->mOwner, pthread_self())) {
  /external/chromium_org/third_party/sqlite/src/src/
mutex_unix.c 60 ** deliver incorrect results. In particular, if pthread_equal() is
62 ** incorrect results. On most platforms, pthread_equal() is a
67 ** On those platforms where pthread_equal() is not atomic, SQLite
74 return (p->nRef!=0 && pthread_equal(p->owner, pthread_self()));
77 return p->nRef==0 || pthread_equal(p->owner, pthread_self())==0;
213 ** our own. This implementation assumes that pthread_equal()
224 if( p->nRef>0 && pthread_equal(p->owner, self) ){
256 ** our own. This implementation assumes that pthread_equal()
267 if( p->nRef>0 && pthread_equal(p->owner, self) ){
  /external/chromium_org/rlz/lib/
recursive_cross_process_lock_posix.cc 26 if (pthread_equal(pthread_self(), locking_thread_) == 0) {
  /frameworks/wilhelm/src/
locks.c 106 if (pthread_equal(pthread_self(), owner)) {
138 assert(pthread_equal(pthread_self(), thiz->mOwner));
171 assert(pthread_equal(pthread_self(), thiz->mOwner));
292 assert(pthread_equal(pthread_self(), thiz->mOwner));
  /external/libcxx/src/
mutex.cpp 168 if (pthread_equal(id, __id_))
186 if (lk.owns_lock() && (__count_ == 0 || pthread_equal(id, __id_)))
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
mutex.cpp 169 if (pthread_equal(id, __id_))
187 if (lk.owns_lock() && (__count_ == 0 || pthread_equal(id, __id_)))
  /external/chromium_org/third_party/webrtc/base/
criticalsection.h 105 bool CurrentThreadIsOwner() const { return pthread_equal(thread_, pthread_self()); }
  /frameworks/base/libs/hwui/
RenderState.cpp 165 LOG_ALWAYS_FATAL_IF(!pthread_equal(mThreadId, curr), "Wrong thread!");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/
Xthreads.h 258 # define xthread_have_id(id) !pthread_equal(id, _X_no_thread_id)
260 # define xthread_equal(id1,id2) pthread_equal(id1, id2)
263 # define xthread_have_id(id) !pthread_equal(id, 0)
265 # define xthread_equal(id1,id2) pthread_equal(id1, id2)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xthreads.h 258 # define xthread_have_id(id) !pthread_equal(id, _X_no_thread_id)
260 # define xthread_equal(id1,id2) pthread_equal(id1, id2)
263 # define xthread_have_id(id) !pthread_equal(id, 0)
265 # define xthread_equal(id1,id2) pthread_equal(id1, id2)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/x86_64-linux/32/bits/
gthr-default.h 96 __gthrw3(pthread_equal)
124 __gthrw(pthread_equal)
681 return __gthrw_(pthread_equal) (__t1, __t2);
gthr-posix.h 96 __gthrw3(pthread_equal)
124 __gthrw(pthread_equal)
681 return __gthrw_(pthread_equal) (__t1, __t2);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/x86_64-linux/bits/
gthr-default.h 96 __gthrw3(pthread_equal)
124 __gthrw(pthread_equal)
681 return __gthrw_(pthread_equal) (__t1, __t2);
gthr-posix.h 96 __gthrw3(pthread_equal)
124 __gthrw(pthread_equal)
681 return __gthrw_(pthread_equal) (__t1, __t2);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
gthr-default.h 109 __gthrw3(pthread_equal)
137 __gthrw(pthread_equal)
720 return __gthrw_(pthread_equal) (__t1, __t2);
gthr-posix.h 109 __gthrw3(pthread_equal)
137 __gthrw(pthread_equal)
720 return __gthrw_(pthread_equal) (__t1, __t2);

Completed in 991 milliseconds

1 2 3 4 5 6 7 8 9