Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DPackageAbiHelperImpl.java109 final File codeFile = new File(codePath); in deriveCodePathName() local
110 final String name = codeFile.getName(); in deriveCodePathName()
111 if (codeFile.isDirectory()) { in deriveCodePathName()
143 final File codeFile = new File(codePath); in getNativeLibraryPaths() local
151 if (isApkFile(codeFile)) { in getNativeLibraryPaths()
186 nativeLibraryRootDir = new File(codeFile, LIB_DIR_NAME).getAbsolutePath(); in getNativeLibraryPaths()
223 final File codeFile = new File(pkg.codePath); in getBundledAppAbi() local
230 if (isApkFile(codeFile)) { in getBundledAppAbi()
237 final File rootDir = new File(codeFile, LIB_DIR_NAME); in getBundledAppAbi()
DPackageManagerService.java15223 private File codeFile;
15248 this.codeFile = (codePath != null) ? new File(codePath) : null;
15264 codeFile = origin.file;
15273 codeFile = tempDir;
15281 origin.file.getAbsolutePath(), codeFile);
15287 final File libraryRoot = new File(codeFile, LIB_DIR_NAME);
15290 handle = NativeLibraryHelper.Handle.create(codeFile);
15316 final File targetDir = codeFile.getParentFile();
15317 final File beforeCodeFile = codeFile;
15334 codeFile = afterCodeFile;
[all …]
/frameworks/base/core/java/com/android/internal/content/
DPackageHelper.java408 final File codeFile = new File(codePath); in calculateInstalledSize() local
409 sizeBytes += codeFile.length(); in calculateInstalledSize()