Home
last modified time | relevance | path

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

/system/core/libprocessgroup/
Dprocessgroup.cpp169 auto uid_path = ConvertUidToPath(cgroup, uid); in RemoveProcessGroup() local
170 rmdir(uid_path.c_str()); in RemoveProcessGroup()
175 static bool RemoveUidProcessGroups(const std::string& uid_path) { in RemoveUidProcessGroups() argument
176 std::unique_ptr<DIR, decltype(&closedir)> uid(opendir(uid_path.c_str()), closedir); in RemoveUidProcessGroups()
189 auto path = StringPrintf("%s/%s", uid_path.c_str(), dir->d_name); in RemoveUidProcessGroups()
407 auto uid_path = ConvertUidToPath(cgroup.c_str(), uid); in createProcessGroup() local
409 if (!MkdirAndChown(uid_path, 0750, AID_SYSTEM, AID_SYSTEM)) { in createProcessGroup()
410 PLOG(ERROR) << "Failed to make and chown " << uid_path; in createProcessGroup()