Searched defs:toUuid (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java226 public void moveCompleteApp(String fromUuid, String toUuid, String packageName, argument
231 mInstalld.moveCompleteApp(fromUuid, toUuid, packageName, dataAppName, appId, seInfo,
H A DPackageManagerService.java15186 final String toUuid; field in class:PackageManagerService.MoveInfo
15193 public MoveInfo(int moveId, String fromUuid, String toUuid, String packageName, argument
15197 this.toUuid = toUuid;
16049 + move.fromUuid + " to " + move.toUuid);
16052 mInstaller.moveCompleteApp(move.fromUuid, move.toUuid, move.packageName,
16060 codeFile = new File(Environment.getDataAppDirectory(move.toUuid), move.dataAppName);
16069 cleanUp(move.toUuid);
16076 cleanUp(move.toUuid);
16096 cleanUp(move.toUuid);
[all...]
/frameworks/native/cmds/installd/
H A DInstalldNativeService.cpp808 const std::unique_ptr<std::string>& toUuid, const std::string& packageName,
813 CHECK_ARGUMENT_UUID(toUuid);
818 const char* to_uuid = toUuid ? toUuid->c_str() : nullptr;
865 if (!createAppData(toUuid, packageName, user, FLAG_STORAGE_CE | FLAG_STORAGE_DE, appId,
909 if (!restoreconAppData(toUuid, packageName, user, FLAG_STORAGE_CE | FLAG_STORAGE_DE,
807 moveCompleteApp(const std::unique_ptr<std::string>& fromUuid, const std::unique_ptr<std::string>& toUuid, const std::string& packageName, const std::string& dataAppName, int32_t appId, const std::string& seInfo, int32_t targetSdkVersion) argument

Completed in 65 milliseconds