Searched refs:task_path (Results 1 – 4 of 4) sorted by relevance
/system/core/debuggerd/ |
D | backtrace.cpp | 122 char task_path[64]; in dump_backtrace() local 123 snprintf(task_path, sizeof(task_path), "/proc/%d/task", pid); in dump_backtrace() 124 DIR* d = opendir(task_path); in dump_backtrace()
|
D | utility.cpp | 213 char task_path[PATH_MAX]; local 214 if (snprintf(task_path, PATH_MAX, "/proc/%d/task/%d", pid, tid) >= PATH_MAX) { 219 return access(task_path, F_OK) == 0;
|
D | tombstone.cpp | 423 char task_path[64]; in dump_sibling_thread_report() local 425 snprintf(task_path, sizeof(task_path), "/proc/%d/task", pid); in dump_sibling_thread_report() 427 DIR* d = opendir(task_path); in dump_sibling_thread_report()
|
/system/core/libbacktrace/ |
D | backtrace_test.cpp | 404 char task_path[128]; in GetThreads() local 405 snprintf(task_path, sizeof(task_path), "/proc/%d/task", pid); in GetThreads() 407 DIR* tasks_dir = opendir(task_path); in GetThreads()
|