HomeSort by relevance Sort by last modified time
    Searched refs:pthread_gettid_np (Results 1 - 16 of 16) sorted by null

  /bionic/libc/bionic/
pthread_gettid_np.cpp 33 pid_t pthread_gettid_np(pthread_t t) { function
pthread_setschedparam.cpp 38 pid_t tid = pthread_gettid_np(t);
47 pid_t tid = pthread_gettid_np(t);
pthread_getcpuclockid.cpp 34 pid_t tid = pthread_gettid_np(t);
pthread_getschedparam.cpp 37 pid_t tid = pthread_gettid_np(t);
pthread_kill.cpp 38 pid_t tid = pthread_gettid_np(t);
pthread_setname_np.cpp 47 snprintf(comm_name, sizeof(comm_name), "/proc/self/task/%d/comm", pthread_gettid_np(t));
posix_timers.cpp 168 se.sigev_notify_thread_id = pthread_gettid_np(timer->callback_thread);
ndk_cruft.cpp 347 // In L we added a public pthread_gettid_np, but some apps were using the private API.
349 return pthread_gettid_np(t);
  /frameworks/native/services/surfaceflinger/
EventControlThread.cpp 37 pid_t tid = pthread_gettid_np(mThread.native_handle());
EventThread.cpp 64 pid_t tid = pthread_gettid_np(mThread.native_handle());
  /frameworks/wilhelm/src/
locks.cpp 20 // Use this macro to validate a pthread_t before passing it into pthread_gettid_np.
85 pid_t ownerTid = LIKELY_VALID(owner) ? pthread_gettid_np(owner) : -1;
104 pid_t ownerTid = LIKELY_VALID(owner) ? pthread_gettid_np(owner) : -1;
  /art/runtime/
thread_pool.cc 74 int result = setpriority(PRIO_PROCESS, pthread_gettid_np(pthread_), priority);
  /bionic/libc/include/
pthread.h 154 pid_t pthread_gettid_np(pthread_t __pthread) __INTRODUCED_IN(21);
  /system/core/libutils/
Threads.cpp 838 tid = pthread_gettid_np(pthread);
  /art/runtime/jit/
profile_saver.cc 54 int result = setpriority(PRIO_PROCESS, pthread_gettid_np(thread), priority);
    [all...]
  /bionic/tests/
pthread_test.cpp     [all...]

Completed in 417 milliseconds