Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DPackageAbiHelperImpl.java156 final String apkRoot = calculateBundledApkRoot(sourceDir); in getNativeLibraryPaths() local
165 nativeLibraryRootDir = Environment.buildPath(new File(apkRoot), libDir, in getNativeLibraryPaths()
170 secondaryNativeLibraryDir = Environment.buildPath(new File(apkRoot), in getNativeLibraryPaths()
209 final String apkRoot = calculateBundledApkRoot(pkg.applicationInfo.sourceDir); 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()