Home
last modified time | relevance | path

Searched refs:pid_t (Results 1 – 13 of 13) sorted by relevance

/art/runtime/
Dutils.h416 pid_t GetTid();
419 std::string GetThreadName(pid_t tid);
425 void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu);
428 std::string GetSchedulerGroupName(pid_t tid);
435 void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix = "",
440 void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix = "", bool include_count = tru…
Dthread_list.h47 pid_t GetLockOwner(); // For SignalCatcher.
140 bool Contains(pid_t tid) EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_);
Dthread_android.cc56 pid_t tid = GetTid(); in SetNativePriority()
Dutils.cc64 pid_t GetTid() { in GetTid()
75 std::string GetThreadName(pid_t tid) { in GetThreadName()
1023 void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu) { in GetTaskStats()
1040 std::string GetSchedulerGroupName(pid_t tid) { in GetSchedulerGroupName()
1065 void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix, in DumpNativeStack()
1119 void DumpKernelStack(std::ostream&, pid_t, const char*, bool) {} in DumpKernelStack() argument
1123 void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix, bool include_count) { in DumpKernelStack()
1343 pid_t pid = fork(); in Exec()
1363 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0)); in Exec()
Dthread_list.cc74 bool ThreadList::Contains(pid_t tid) { in Contains()
83 pid_t ThreadList::GetLockOwner() { in GetLockOwner()
104 static void DumpUnattachedThread(std::ostream& os, pid_t tid) NO_THREAD_SAFETY_ANALYSIS { in DumpUnattachedThread()
127 pid_t tid = strtol(e->d_name, &end, 10); in DumpUnattachedThreads()
Druntime_linux.cc294 pid_t tid = GetTid(); in HandleUnexpectedSignal()
Druntime.cc1003 pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner(); in DumpLockHolders()
1004 pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner(); in DumpLockHolders()
1005 pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner(); in DumpLockHolders()
Dthread.h177 static void DumpState(std::ostream& os, const Thread* thread, pid_t tid)
280 pid_t GetTid() const { in GetTid()
Dclass_linker.h358 pid_t GetClassesLockOwner(); // For SignalCatcher.
359 pid_t GetDexLockOwner(); // For SignalCatcher.
Dthread.cc739 void Thread::DumpState(std::ostream& os, const Thread* thread, pid_t tid) { in DumpState()
Dclass_linker.cc5492 pid_t ClassLinker::GetClassesLockOwner() { in GetClassesLockOwner()
5496 pid_t ClassLinker::GetDexLockOwner() { in GetDexLockOwner()
/art/runtime/mirror/
Dclass.h906 pid_t GetClinitThreadId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetClinitThreadId()
911 void SetClinitThreadId(pid_t new_clinit_thread_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
1112 pid_t clinit_thread_id_;
Dclass-inl.h470 inline void Class::SetClinitThreadId(pid_t new_clinit_thread_id) { in SetClinitThreadId()