Searched refs:task_path (Results 1 - 2 of 2) sorted by relevance
/system/core/debuggerd/ |
H A D | debuggerd.cpp | 187 char task_path[PATH_MAX]; local 188 if (snprintf(task_path, PATH_MAX, "/proc/%d/task/%d", pid, tid) >= PATH_MAX) { 193 return access(task_path, F_OK) == 0; 442 char task_path[PATH_MAX]; local 444 if (snprintf(task_path, PATH_MAX, "/proc/%d/task", pid) >= PATH_MAX) { 449 std::unique_ptr<DIR, int (*)(DIR*)> d(opendir(task_path), closedir);
|
/system/core/libbacktrace/ |
H A D | backtrace_test.cpp | 414 char task_path[128]; local 415 snprintf(task_path, sizeof(task_path), "/proc/%d/task", pid); 417 DIR* tasks_dir = opendir(task_path);
|
Completed in 67 milliseconds