Home
last modified time | relevance | path

Searched defs:targetDir (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerServiceUtils.java1032 public static int copyPackage(String packagePath, File targetDir) { in copyPackage()
1047 copyFile(pkg.getBaseApkPath(), targetDir, "base.apk"); in copyPackage() local
1050 copyFile(pkg.getSplitApkPaths()[i], targetDir, in copyPackage() local
1061 private static void copyFile(String sourcePath, File targetDir, String targetName) in copyFile()
1084 public static void makeDirRecursive(File targetDir, int mode) throws ErrnoException { in makeDirRecursive()
1292 public static File getNextCodePath(File targetDir, String packageName) { in getNextCodePath()
H A DInstallPackageHelper.java1857 final File targetDir = resolveTargetDir(request.getInstallFlags(), request.getCodeFile()); in doRenameLI() local
/aosp14/frameworks/base/services/core/java/com/android/server/rollback/
H A DRollbackStore.java248 File targetDir = new File(rollback.getBackupDir(), packageName); in backupPackageCodePath() local
285 File targetDir = new File(rollback.getBackupDir(), packageName); in getPackageCodePaths() local
299 File targetDir = new File(rollback.getBackupDir(), info.getPackageName()); in deletePackageCodePaths() local
/aosp14/frameworks/base/services/incremental/
H A DServiceWrappers.cpp45 const std::string& backingPath, const std::string& targetDir, int32_t flags, in mountIncFs()
/aosp14/frameworks/base/services/incremental/test/
H A DIncrementalServiceTest.cpp95 const std::string& targetDir, int32_t flags, in getInvalidControlParcel()
101 binder::Status incFsSuccess(const std::string& imagePath, const std::string& targetDir, in incFsSuccess()
/aosp14/frameworks/base/core/java/android/app/
H A DContextImpl.java664 private static int moveFiles(File sourceDir, File targetDir, final String prefix) { in moveFiles()