Home
last modified time | relevance | path

Searched refs:rel_path (Results 1 – 2 of 2) sorted by relevance

/aosp14/system/core/libprocessgroup/
H A Dcgroup_map.cpp88 std::string CgroupController::GetTasksFilePath(const std::string& rel_path) const { in GetTasksFilePath()
91 if (!rel_path.empty()) { in GetTasksFilePath()
92 tasks_path += "/" + rel_path; in GetTasksFilePath()
97 std::string CgroupController::GetProcsFilePath(const std::string& rel_path, uid_t uid, in GetProcsFilePath() argument
100 proc_path.append("/").append(rel_path); in GetProcsFilePath()
/aosp14/system/core/fastboot/
H A Dvendor_boot_img_utils_test.cpp165 TestFileHandle(const std::filesystem::path& rel_path) in TestFileHandle()
166 : abs_path_(std::move(std::filesystem::path(GetExecutableDirectory()) / rel_path)) {} in TestFileHandle()
175 ReadOnlyTestFileHandle(const std::filesystem::path& rel_path) : TestFileHandle(rel_path) {} in ReadOnlyTestFileHandle()
188 ReadWriteTestFileHandle(const std::filesystem::path& rel_path) : TestFileHandle(rel_path) {} in ReadWriteTestFileHandle()
231 void OpenTestFile(const char* rel_path, std::unique_ptr<TestFileHandle>* handle, in OpenTestFile() argument
233 *handle = std::make_unique<ReadOnlyTestFileHandle>(rel_path); in OpenTestFile()