Home
last modified time | relevance | path

Searched refs:task_path (Results 1 – 4 of 4) sorted by relevance

/system/core/debuggerd/
Dbacktrace.cpp122 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()
Dutility.cpp213 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;
Dtombstone.cpp423 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/
Dbacktrace_test.cpp404 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()