Rename SupplementalProcess to SdkSandbox

Ignore-AOSP-First: code not in AOSP yet
Bug: 220320098
Test: presubmit
Change-Id: I727342675f6817d4dced431b4ef57e909c02eb5a
This commit is contained in:
Nikita Ioffe 2022-02-21 19:03:26 +00:00
parent 7413749004
commit bad7cd0fd7

View file

@ -174,7 +174,7 @@ static bool prepare_subdirs(const std::string& volume_uuid, int user_id, int fla
auto misc_de_path = android::vold::BuildDataMiscDePath(user_id); auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM,
misc_de_path + "/supplemental", user_id)) { misc_de_path + "/sdksandbox", user_id)) {
return false; return false;
} }
@ -210,7 +210,7 @@ static bool prepare_subdirs(const std::string& volume_uuid, int user_id, int fla
auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id); auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM,
misc_ce_path + "/supplemental", user_id)) { misc_ce_path + "/sdksandbox", user_id)) {
return false; return false;
} }