Searched refs:apkName (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerService.java | 6574 final String apkName = deriveCodePathName(codePath); in setNativeLibraryPaths() local 6577 apkName).getAbsolutePath(); in setNativeLibraryPaths() 6582 secondaryLibDir, apkName).getAbsolutePath(); in setNativeLibraryPaths() 6588 final String apkName = deriveCodePathName(codePath); in setNativeLibraryPaths() local 6589 info.nativeLibraryRootDir = new File(mAppLib32InstallDir, apkName) in setNativeLibraryPaths() 6619 final String apkName = deriveCodePathName(pkg.applicationInfo.getCodePath()); in setBundledAppAbisAndRoots() local 6624 setBundledAppAbi(pkg, apkRoot, apkName); in setBundledAppAbisAndRoots() 6645 … private static void setBundledAppAbi(PackageParser.Package pkg, String apkRoot, String apkName) { in setBundledAppAbi() argument 6652 … has64BitLibs = (new File(apkRoot, new File(LIB64_DIR_NAME, apkName).getPath())).exists(); in setBundledAppAbi() 6653 has32BitLibs = (new File(apkRoot, new File(LIB_DIR_NAME, apkName).getPath())).exists(); in setBundledAppAbi() [all …]
|