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

1 2 3 4 5

  /system/media/wilhelm/src/android/
CallbackProtector.cpp 67 mCallbackThread = pthread_self();
75 (void *) pthread_self(), gettid(),
115 mRequesterThread = pthread_self();
123 (void *) pthread_self(), gettid());
136 mRequesterThread = pthread_self();
144 (void *) pthread_self(), gettid());
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
SDLOSXCAGuard.c 98 if(pthread_self() != cag->mOwner)
103 cag->mOwner = pthread_self();
113 assert(pthread_self() == cag->mOwner);
126 if (pthread_self() == cag->mOwner) {
132 cag->mOwner = pthread_self();
144 assert(pthread_self() == cag->mOwner);
151 cag->mOwner = pthread_self();
  /system/bluetooth/tools/
socktest.c 118 printf("%ld: socket()\n", pthread_self());
120 printf("%ld: socket() = %d\n", pthread_self(), ret);
129 printf("%ld: close(%d)\n", pthread_self(), fd);
131 printf("%ld: close(%d) = %d\n", pthread_self(), fd, ret);
166 printf("%ld: bind(%d)\n", pthread_self(), fd);
168 printf("%ld: bind(%d) = %d\n", pthread_self(), fd, ret);
177 printf("%ld: listen(%d)\n", pthread_self(), fd);
179 printf("%ld: listen(%d) = %d\n", pthread_self(), fd, ret);
189 printf("%ld: read(%d)\n", pthread_self(), fd);
191 printf("%ld: read(%d) = %d [%d]\n", pthread_self(), fd, ret, (int)buf)
    [all...]
  /system/media/wilhelm/src/itf/
IThreadSync.c 30 if (!pthread_equal(thiz->mOwner, pthread_self())) {
40 thiz->mOwner = pthread_self();
56 if (!thiz->mInCriticalSection || !pthread_equal(thiz->mOwner, pthread_self())) {
  /external/valgrind/main/drd/tests/
monitor_example.cpp 107 m_owner = pthread_self();
119 assert(m_owner == pthread_self());
123 m_owner = pthread_self();
139 result = m_recursion_count > 0 && m_owner == pthread_self();
pth_barrier.c 50 printf("thread %lx iteration 0\n", pthread_self());
56 pthread_self(), i + 1, &array[i]);
pth_detached_sem.c 35 pthread_detach(pthread_self());
  /external/chromium/third_party/libjingle/source/talk/base/
criticalsection.h 97 TRACK_OWNER(thread_ = pthread_self());
105 bool CurrentThreadIsOwner() const { return pthread_equal(thread_, pthread_self()); }
  /external/qemu/distrib/sdl-1.2.12/src/thread/pthread/
SDL_sysmutex.c 91 this_thread = pthread_self();
128 if ( pthread_self() == mutex->owner ) {
SDL_systhread.c 102 return((Uint32)pthread_self());
  /external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
SDL_sysmutex.c 90 this_thread = pthread_self();
127 if ( pthread_self() == mutex->owner ) {
SDL_systhread.c 127 return((Uint32)pthread_self());
  /system/extras/tests/bionic/libc/other/
test_timer_create2.c 44 p, pthread_self(), v);
91 printf("main thread is %p\n", pthread_self());
  /system/media/wilhelm/src/
locks.c 69 pthread_t me = pthread_self();
89 pthread_t me = pthread_self();
92 if (pthread_equal(pthread_self(), owner)) {
103 thiz->mOwner = pthread_self();
124 assert(pthread_equal(pthread_self(), thiz->mOwner));
157 assert(pthread_equal(pthread_self(), thiz->mOwner));
278 assert(pthread_equal(pthread_self(), thiz->mOwner));
289 thiz->mOwner = pthread_self();
  /external/valgrind/main/none/tests/
pth_blockedsig.c 49 main_thread = pthread_self ();
  /external/webkit/Source/JavaScriptCore/wtf/mac/
MainThreadMac.mm 67 mainThreadPthread = pthread_self();
137 return pthread_equal(pthread_self(), mainThreadPthread);
  /external/dbus/dbus/
dbus-sysdeps-pthread.c 129 pthread_t self = pthread_self ();
245 _dbus_assert (pthread_equal (pmutex->holder, pthread_self ()));
252 pmutex->holder = pthread_self(); /* other threads may have locked the mutex in the meantime */
268 _dbus_assert (pthread_equal (pmutex->holder, pthread_self ()));
302 pmutex->holder = pthread_self(); /* other threads may have locked the mutex in the meantime */
  /external/webkit/Source/JavaScriptCore/wtf/
StackBounds.cpp 82 pthread_t thread = pthread_self();
93 pthread_t thread = pthread_self();
97 threadInfo.tid = pthread_self();
127 pthread_t thread = pthread_self();
162 pthread_t thread = pthread_self();
  /external/chromium/base/threading/
platform_thread_posix.cc 129 return reinterpret_cast<int64>(pthread_self());
131 return pthread_self();
175 int err = dynamic_pthread_setname_np(pthread_self(),
  /frameworks/media/libvideoeditor/osal/src/
M4OSA_Mutex.c 145 currentThread = pthread_self();
227 currentThread = pthread_self();
  /external/valgrind/main/helgrind/tests/
tc22_exit_w_lock.c 28 r= pthread_detach( pthread_self() ); assert(!r);
  /external/webkit/Source/WebCore/bindings/js/
ScriptControllerMac.mm 145 if (pthread_self() != mainThread)
164 mainThread = pthread_self();
  /libcore/luni/src/main/native/
AsynchronousSocketCloseMonitor.cpp 73 mThread = pthread_self();
  /system/extras/tests/bionic/libc/common/
test_pthread_getcpuclockid.c 41 pthread_t self = pthread_self();
test_sem_post.c 48 void *me = (void *)pthread_self();

Completed in 2092 milliseconds

1 2 3 4 5