Searched refs:pthread_equal (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_equal.c2 * pthread_equal.c
42 pthread_equal (pthread_t t1, pthread_t t2) function
76 } /* pthread_equal */
H A Dpthread_mutex_trylock.c86 pthread_equal (mx->ownerThread, pthread_self ()))
131 pthread_equal (mx->ownerThread, pthread_self ()))
H A Dpthread_mutex_unlock.c87 if (pthread_equal (mx->ownerThread, pthread_self()))
121 if (pthread_equal (mx->ownerThread, self))
H A Dpthread_join.c119 else if (pthread_equal (self, thread))
H A Dpthread_mutex_lock.c110 if (pthread_equal (mx->ownerThread, self))
217 if (pthread_equal (mx->ownerThread, self))
H A Dpthread_cancel.c122 cancel_self = pthread_equal (thread, self);
H A Dpthread_mutex_timedlock.c170 if (pthread_equal (mx->ownerThread, self))
275 if (pthread_equal (mx->ownerThread, self))
H A DMakefile147 pthread_equal.obj \
263 pthread_equal.c \
H A Dpthread.h947 PTW32_DLLPORT int PTW32_CDECL pthread_equal (pthread_t t1,
/external/chromium_org/third_party/skia/src/ports/
H A DSkMutex_pthread.h26 SkASSERT(0 == pthread_equal(fOwner, pthread_self())); // SkMutex is not re-entrant
36 SkASSERT(0 != pthread_equal(fOwner, pthread_self()));
/external/chromium_org/third_party/sqlite/src/src/
H A Dmutex_unix.c60 ** 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/
H A Drecursive_cross_process_lock_posix.cc26 if (pthread_equal(pthread_self(), locking_thread_) == 0) {
/external/libcxx/src/
H A Dmutex.cpp168 if (pthread_equal(id, __id_))
186 if (lk.owns_lock() && (__count_ == 0 || pthread_equal(id, __id_)))
/external/chromium_org/third_party/webrtc/base/
H A Dcriticalsection.h105 bool CurrentThreadIsOwner() const { return pthread_equal(thread_, pthread_self()); }
/external/chromium_org/third_party/libxml/src/
H A Dthreads.c80 extern int pthread_equal ()
365 if (pthread_equal(tok->tid, pthread_self())) {
813 return (pthread_equal(mainthread,pthread_self()));
876 (pthread_equal != NULL) &&
/external/libxml2/
H A Dthreads.c80 extern int pthread_equal ()
365 if (pthread_equal(tok->tid, pthread_self())) {
814 return (pthread_equal(mainthread,pthread_self()));
877 (pthread_equal != NULL) &&
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dport.h134 inline bool pthread_equal(pthread_t left, pthread_t right) { function
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dport.h131 inline bool pthread_equal(pthread_t left, pthread_t right) { function
/external/qemu/util/
H A Dqemu-thread-posix.c429 return pthread_equal(pthread_self(), thread->thread);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmemory_region_map.cc162 return pthread_equal(pthread_self(), should_be);
256 // owns lock_ iff pthread_equal(lock_owner_tid_, pthread_self())
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmemory_region_map.cc170 return pthread_equal(pthread_self(), should_be);
293 // owns lock_ iff pthread_equal(lock_owner_tid_, pthread_self())
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h1873 GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self()))
1885 // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
/external/gtest/include/gtest/internal/
H A Dgtest-port.h1358 GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self()))
1370 // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c320 #define mutex_held(X) pthread_equal(primitives.aHolder[X], pthread_self())
/external/chromium_org/third_party/mesa/src/include/GL/
H A Dvms_x_fix.h1019 #define pthread_equal PTHREAD_EQUAL macro

Completed in 1013 milliseconds

12