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

  /external/autotest/client/site_tests/platform_ChromeCgroups/
platform_ChromeCgroups.py 24 task_path = os.path.join(cgroup_dir, 'tasks')
25 task_file = open(task_path)
27 raise error.TestError('failed to open %s' % task_path)
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_ptrace_dumper.cc 311 char task_path[NAME_MAX]; local
312 if (!BuildProcPath(task_path, pid_, "task"))
315 const int fd = sys_open(task_path, O_RDONLY | O_DIRECTORY, 0);
  /external/libchrome/base/process/
process_metrics_linux.cc 131 FilePath task_path = internal::GetProcPidDir(pid).Append("task"); local
133 DIR* dir = opendir(task_path.value().c_str());
135 DPLOG(ERROR) << "opendir(" << task_path.value() << ")";
150 task_path.Append(ent->d_name).Append(internal::kStatFile);
  /system/core/debuggerd/
debuggerd.cpp 417 char task_path[64]; local
419 snprintf(task_path, sizeof(task_path), "/proc/%d/task", pid);
421 std::unique_ptr<DIR, int (*)(DIR*)> d(opendir(task_path), closedir);
  /system/core/libbacktrace/
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);
    [all...]

Completed in 424 milliseconds