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

1 2 3 4 5 6 7 8 910

  /bionic/libc/bionic/
pthread_self.cpp 31 pthread_t pthread_self() { function
raise.cpp 34 int rc = pthread_kill(pthread_self(), sig);
pthread_join.cpp 35 if (t == pthread_self()) {
pthread_setname_np.cpp 55 if (t == pthread_self()) {
  /external/skia/src/core/
SkThreadID.cpp 15 SkThreadID SkGetThreadID() { return (int64_t)pthread_self(); }
  /frameworks/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/compiler-rt/test/msan/
pthread_getattr_np_deadlock.cc 10 int res = pthread_getattr_np(pthread_self(), &attr);
  /frameworks/base/libs/hwui/
GpuMemoryTracker.h 28 !pthread_equal(gGpuThread, pthread_self()), \
31 pthread_self(), gGpuThread)
  /external/compiler-rt/test/tsan/
thread_name2.cc 21 pthread_setname_np(pthread_self(), "foobar2");
signal_errno.cc 37 mainth = pthread_self();
thread_name.cc 27 pthread_setname_np(pthread_self(), "Thread2");
  /external/libchrome/base/threading/
platform_thread_linux.cc 52 pthread_setschedparam(pthread_self(), SCHED_OTHER, &kResetPrio);
56 pthread_setschedparam(pthread_self(), SCHED_RR, &kRealTimePrio) == 0;
66 if (pthread_getschedparam(pthread_self(), &maybe_sched_rr,
platform_thread_posix.cc 131 return pthread_mach_thread_np(pthread_self());
137 return pthread_self();
139 return pthread_self();
142 return reinterpret_cast<int32_t>(pthread_self());
144 return reinterpret_cast<int64_t>(pthread_self());
150 return PlatformThreadRef(pthread_self());
155 return PlatformThreadHandle(pthread_self());
  /frameworks/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/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 53 printf("thread %lx iteration 0\n", (long) pthread_self());
59 (long) pthread_self(), i + 1, &array[i]);
  /external/valgrind/memcheck/tests/
threadname.c 30 pthread_setname_np(pthread_self(), threadname);
46 pthread_setname_np(pthread_self(), threadname);
  /frameworks/wilhelm/src/
locks.c 82 pthread_t me = pthread_self();
102 pthread_t me = pthread_self();
105 if (pthread_equal(pthread_self(), owner)) {
116 thiz->mOwner = pthread_self();
137 assert(pthread_equal(pthread_self(), thiz->mOwner));
170 assert(pthread_equal(pthread_self(), thiz->mOwner));
291 assert(pthread_equal(pthread_self(), thiz->mOwner));
302 thiz->mOwner = pthread_self();
  /external/avahi/avahi-common/
thread-watch.c 111 assert(!p->thread_running || !pthread_equal(pthread_self(), p->thread_id));
149 assert(!pthread_equal(pthread_self(), p->thread_id));
165 assert(pthread_equal(pthread_self(), p->thread_id));
174 assert(!p->thread_running || !pthread_equal(pthread_self(), p->thread_id));
183 assert(!p->thread_running || !pthread_equal(pthread_self(), p->thread_id));
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_mac.cc 69 // shadow memory of the pointer returned by pthread_self() to store a pointer to
78 uptr thread_identity = (uptr)pthread_self();
93 uptr thread_identity = (uptr)pthread_self();
118 // The `thread == pthread_self()` check indicates this is actually a worker
132 if (thread == pthread_self()) {
141 if (thread == pthread_self()) {
163 main_thread_identity = (uptr)pthread_self();
  /external/webrtc/webrtc/base/
criticalsection.cc 47 thread_ = pthread_self();
65 thread_ = pthread_self();
99 return pthread_equal(thread_, pthread_self());
  /external/fio/os/
os-openbsd.h 53 return (int) pthread_self();
  /external/valgrind/none/tests/
pth_blockedsig.c 49 main_thread = pthread_self ();
  /external/libunwind/tests/
Gtest-concurrent.c 64 printf ("%lx: IP=%lx\n", (long) pthread_self (), (unsigned long) ip);
79 pthread_kill (pthread_self (), SIGUSR1);
  /external/mesa3d/src/glx/apple/
apple_glx_log.c 80 thread = (uint64_t)(uintptr_t)pthread_self();
85 thread = (uint64_t)(uintptr_t)pthread_self();

Completed in 2097 milliseconds

1 2 3 4 5 6 7 8 910