Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DPackageAbiHelperImpl.java167 final String apkName = deriveCodePathName(codePath); in deriveNativeLibraryPaths() local
170 apkName).getAbsolutePath(); in deriveNativeLibraryPaths()
175 secondaryLibDir, apkName).getAbsolutePath(); in deriveNativeLibraryPaths()
180 final String apkName = deriveCodePathName(codePath); in deriveNativeLibraryPaths() local
181 nativeLibraryRootDir = new File(appLib32InstallDir, apkName) in deriveNativeLibraryPaths()
209 final String apkName = deriveCodePathName(pkg.getPath()); in getBundledAppAbis() local
214 final Abis abis = getBundledAppAbi(pkg, apkRoot, apkName); in getBundledAppAbis()
226 private Abis getBundledAppAbi(AndroidPackage pkg, String apkRoot, String apkName) { in getBundledAppAbi() argument
237 (new File(apkRoot, new File(LIB64_DIR_NAME, apkName).getPath())).exists(); in getBundledAppAbi()
238 has32BitLibs = (new File(apkRoot, new File(LIB_DIR_NAME, apkName).getPath())).exists(); in getBundledAppAbi()
/frameworks/base/core/java/android/os/incremental/
DIncrementalFileStorages.java153 final String apkName = apk.name; in addApkFile() local
154 final File targetFile = new File(mStageDir, apkName); in addApkFile()
156 mDefaultStorage.makeFile(apkName, apk.size, null, apk.metadata, apk.signature, null); in addApkFile()
/frameworks/base/core/java/android/app/
DLoadedApk.java343 final String apkName = path.substring(path.lastIndexOf(File.separator)); in updateApplicationInfo() local
347 if (apkName.equals(oldApkName)) { in updateApplicationInfo()