Home
last modified time | relevance | path

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

/frameworks/native/cmds/installd/
Dutils.h49 std::string create_data_path(const char* volume_uuid);
51 std::string create_data_app_path(const char* volume_uuid);
53 std::string create_data_user_ce_path(const char* volume_uuid, userid_t userid);
54 std::string create_data_user_de_path(const char* volume_uuid, userid_t userid);
56 std::string create_data_user_ce_package_path(const char* volume_uuid,
58 std::string create_data_user_ce_package_path(const char* volume_uuid,
60 std::string create_data_user_de_package_path(const char* volume_uuid,
63 const char* volume_uuid, userid_t userid, const char* package_name);
65 std::string create_data_misc_sdk_sandbox_path(const char* volume_uuid, bool isCeData,
67 std::string create_data_misc_sdk_sandbox_package_path(const char* volume_uuid, bool isCeData,
[all …]
Dutils.cpp120 std::string create_data_user_ce_package_path(const char* volume_uuid, in create_data_user_ce_package_path() argument
124 create_data_user_ce_path(volume_uuid, user).c_str(), package_name); in create_data_user_ce_package_path()
135 const char* volume_uuid, userid_t userid, const char* package_name) { in create_data_user_ce_package_path_as_user_link() argument
137 std::string data(create_data_path(volume_uuid)); in create_data_user_ce_package_path_as_user_link()
141 std::string create_data_user_ce_package_path(const char* volume_uuid, userid_t user, in create_data_user_ce_package_path() argument
145 auto fallback = create_data_user_ce_package_path(volume_uuid, user, package_name); in create_data_user_ce_package_path()
146 auto user_path = create_data_user_ce_path(volume_uuid, user); in create_data_user_ce_package_path()
150 std::string create_data_user_de_package_path(const char* volume_uuid, in create_data_user_de_package_path() argument
154 create_data_user_de_path(volume_uuid, user).c_str(), package_name); in create_data_user_de_package_path()
157 std::string create_data_path(const char* volume_uuid) { in create_data_path() argument
[all …]
Ddexopt.h119 const std::string& pkgname, int uid, const std::optional<std::string>& volume_uuid,
126 const char* volume_uuid, const char* class_loader_context, const char* se_info,
Dotapreopt_parameters.h43 const char* volume_uuid; variable
Dotapreopt_parameters.cpp219 volume_uuid = ParseNull(param); in ReadArgumentsV1()
328 volume_uuid = ParseNull(param); in ReadArgumentsPostV1()
DInstalldNativeService.cpp1591 const char* volume_uuid = volumeUuid ? volumeUuid->c_str() : nullptr; in snapshotAppData() local
1602 auto deleter = [&clear_ce_on_exit, &clear_de_on_exit, &volume_uuid, &userId, &package_name, in snapshotAppData()
1605 auto to = create_data_misc_de_rollback_package_path(volume_uuid, userId, snapshotId, in snapshotAppData()
1613 auto to = create_data_misc_ce_rollback_package_path(volume_uuid, userId, snapshotId, in snapshotAppData()
1624 auto from = create_data_user_de_package_path(volume_uuid, userId, package_name); in snapshotAppData()
1625 auto to = create_data_misc_de_rollback_path(volume_uuid, userId, snapshotId); in snapshotAppData()
1627 create_data_misc_de_rollback_package_path(volume_uuid, userId, snapshotId, in snapshotAppData()
1652 auto from_ce = create_data_user_ce_package_path(volume_uuid, userId, package_name); in snapshotAppData()
1678 auto from = create_data_user_ce_package_path(volume_uuid, userId, package_name); in snapshotAppData()
1679 auto to = create_data_misc_ce_rollback_path(volume_uuid, userId, snapshotId); in snapshotAppData()
[all …]
Ddexopt.cpp1634 const char* pkgname, int dexopt_flags, const char* volume_uuid, int uid, in process_secondary_dex_dexopt() argument
1671 if (!validate_secondary_dex_path(pkgname, dex_path, volume_uuid, uid, storage_flag)) { in process_secondary_dex_dexopt()
1789 const char* volume_uuid, const char* class_loader_context, const char* se_info, in dexopt() argument
1841 pkgname, dexopt_flags, volume_uuid, uid,instruction_set, compiler_filter, in dexopt()
2098 const std::optional<std::string>& volume_uuid, int storage_flag, in reconcile_secondary_dex_file() argument
2119 const char* volume_uuid_cstr = volume_uuid ? volume_uuid->c_str() : nullptr; in reconcile_secondary_dex_file()
2223 const std::optional<std::string>& volume_uuid, int storage_flag, in hash_secondary_dex_file() argument
2227 const char* volume_uuid_cstr = volume_uuid ? volume_uuid->c_str() : nullptr; in hash_secondary_dex_file()
Dotapreopt.cpp527 parameters_.volume_uuid, in Dexopt()
/frameworks/native/cmds/installd/tests/
Dinstalld_otapreopt_test.cpp67 ASSERT_STREQ(params.volume_uuid, ParseNull(args[i++])); in verifyPackageParameters()
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl103 int uid, in @utf8InCpp String[] isas, @nullable @utf8InCpp String volume_uuid, in reconcileSecondaryDexFile() argument
/frameworks/base/core/jni/
Dcom_android_internal_os_Zygote.cpp1156 std::string_view volume_uuid, long long ce_data_inode, std::string_view actualCePath, in isolateAppDataPerPackage() argument
1162 snprintf(mirrorCeParent, PATH_MAX, "/data_mirror/data_ce/%s", volume_uuid.data()); in isolateAppDataPerPackage()
1164 snprintf(mirrorDePath, PATH_MAX, "/data_mirror/data_de/%s/%d", volume_uuid.data(), userId); in isolateAppDataPerPackage()