Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DPackageAbiHelperImpl.java163 final String apkName = deriveCodePathName(codePath); in getNativeLibraryPaths() local
166 apkName).getAbsolutePath(); in getNativeLibraryPaths()
171 secondaryLibDir, apkName).getAbsolutePath(); in getNativeLibraryPaths()
176 final String apkName = deriveCodePathName(codePath); in getNativeLibraryPaths() local
177 nativeLibraryRootDir = new File(appLib32InstallDir, apkName) in getNativeLibraryPaths()
205 final String apkName = deriveCodePathName(pkg.applicationInfo.getCodePath()); in getBundledAppAbis() local
210 final Abis abis = getBundledAppAbi(pkg, apkRoot, apkName); in getBundledAppAbis()
222 private Abis getBundledAppAbi(PackageParser.Package pkg, String apkRoot, String apkName) { in getBundledAppAbi() argument
233 (new File(apkRoot, new File(LIB64_DIR_NAME, apkName).getPath())).exists(); in getBundledAppAbi()
234 has32BitLibs = (new File(apkRoot, new File(LIB_DIR_NAME, apkName).getPath())).exists(); in getBundledAppAbi()
/frameworks/base/core/java/android/app/
DLoadedApk.java338 final String apkName = path.substring(path.lastIndexOf(File.separator)); in updateApplicationInfo() local
342 if (apkName.equals(oldApkName)) { in updateApplicationInfo()