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

1 2 3

  /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...]
  /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());
  /external/webkit/WebKitTools/DumpRenderTree/pthreads/
JavaScriptThreadingPthreads.cpp 82 javaScriptThreads()->remove(pthread_self());
93 javaScriptThreads()->remove(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());
test_timer_create.c 44 p, (int)pthread_self(), v.sival_int);
test_timer_create3.c 52 p, (int)pthread_self(), v.sival_int);
  /external/dbus/dbus/
dbus-sysdeps-pthread.c 115 pthread_t self = pthread_self ();
223 _dbus_assert (pthread_equal (pmutex->holder, pthread_self ()));
230 pmutex->holder = pthread_self(); /* other threads may have locked the mutex in the meantime */
246 _dbus_assert (pthread_equal (pmutex->holder, pthread_self ()));
269 pmutex->holder = pthread_self(); /* other threads may have locked the mutex in the meantime */
  /external/webkit/JavaScriptCore/wtf/
ThreadingPthreads.cpp 79 mainThread = pthread_self();
200 ThreadIdentifier id = identifierByPthreadHandle(pthread_self());
238 id = establishIdentifierForPthreadHandle(pthread_self());
248 return pthread_equal(pthread_self(), mainThread);
  /external/webkit/WebCore/bindings/js/
ScriptControllerMac.mm 145 if (pthread_self() != mainThread)
164 mainThread = pthread_self();
  /system/extras/tests/bionic/libc/common/
test_pthread_getcpuclockid.c 41 pthread_t self = pthread_self();
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/OAL/Pform/Linux/
TILibLinux.cpp 64 return pthread_self();
  /external/libxml2/
threads.c 84 extern pthread_t pthread_self ()
367 if (pthread_equal(tok->tid, pthread_self())) {
378 tok->tid = pthread_self();
770 return ((int) pthread_self());
806 return (mainthread == pthread_self());
876 (pthread_self != NULL) &&
943 mainthread = pthread_self();
  /external/srec/portable/include/
ptrd.h 52 #define PtrdGetCurrentThreadId pthread_self
  /external/v8/src/
platform-linux.cc 464 case ThreadHandle::SELF: thread_ = pthread_self(); break;
489 return pthread_equal(data_->thread_, pthread_self());
511 thread->thread_handle_data()->thread_ = pthread_self();
710 if (pthread_equal(pthread_self(), vm_thread_)) return true;
800 vm_thread_ = pthread_self();
platform-macos.cc 372 case ThreadHandle::SELF: thread_ = pthread_self(); break;
397 return pthread_equal(data_->thread_, pthread_self());
419 thread->thread_handle_data()->thread_ = pthread_self();
platform-openbsd.cc 344 case ThreadHandle::SELF: thread_ = pthread_self(); break;
368 return pthread_equal(data_->thread_, pthread_self());
390 thread->thread_handle_data()->thread_ = pthread_self();
platform-solaris.cc 318 case ThreadHandle::SELF: thread_ = pthread_self(); break;
343 return pthread_equal(data_->thread_, pthread_self());
365 thread->thread_handle_data()->thread_ = pthread_self();
  /external/webkit/JavaScriptCore/runtime/
Collector.cpp 542 pthread_t thread = pthread_self();
546 threadInfo.tid = pthread_self();
566 pthread_t thread = pthread_self();
596 pthread_t thread = pthread_self();
617 pthread_t thread = pthread_self();
652 return pthread_mach_thread_np(pthread_self());
654 return pthread_getw32threadhandle_np(pthread_self());
676 Heap::Thread* thread = new Heap::Thread(pthread_self(), getCurrentPlatformThread(), currentThreadStackBase());
692 pthread_t currentPosixThread = pthread_self();
991 if (!pthread_equal(thread->posixThread, pthread_self()))
    [all...]
  /external/opencore/oscl/oscl/osclproc/src/
oscl_thread.cpp 425 refThreadId = pthread_self();
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscostask.c 115 main_thread = pthread_self();
  /external/qemu/
qemu-thread.c 156 thread->thread = pthread_self();

Completed in 1137 milliseconds

1 2 3