Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/content/
DPackageHelper.java518 final File codeFile = new File(codePath); in calculateInstalledSize() local
519 sizeBytes += codeFile.length(); in calculateInstalledSize()
522 sizeBytes += PackageHelper.extractPublicFiles(codeFile, null); in calculateInstalledSize()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java7845 final File codeFile = new File(codePath); in setNativeLibraryPaths() local
7854 if (isApkFile(codeFile)) { in setNativeLibraryPaths()
7877 info.nativeLibraryRootDir = new File(codeFile.getParentFile(), LIB_DIR_NAME) in setNativeLibraryPaths()
7889 info.nativeLibraryRootDir = new File(codeFile, LIB_DIR_NAME).getAbsolutePath(); in setNativeLibraryPaths()
7938 final File codeFile = new File(pkg.codePath); in setBundledAppAbi() local
7942 if (isApkFile(codeFile)) { in setBundledAppAbi()
7948 final File rootDir = new File(codeFile, LIB_DIR_NAME); in setBundledAppAbi()
11259 private File codeFile; field in PackageManagerService.FileInstallArgs
11284 this.codeFile = (codePath != null) ? new File(codePath) : null; in FileInstallArgs()
11291 codeFile = origin.file; in copyApk()
[all …]