/frameworks/base/services/core/java/com/android/server/pm/ |
D | Installer.java | 142 public void dexopt(String apkPath, int uid, String instructionSet, int dexoptNeeded, in dexopt() argument 146 mInstaller.dexopt(apkPath, uid, instructionSet, dexoptNeeded, dexFlags, in dexopt() 150 public void dexopt(String apkPath, int uid, String pkgName, String instructionSet, in dexopt() argument 155 mInstaller.dexopt(apkPath, uid, pkgName, instructionSet, dexoptNeeded, in dexopt() 228 public void moveAb(String apkPath, String instructionSet, String outputPath) in moveAb() argument 230 mInstaller.execute("move_ab", apkPath, instructionSet, outputPath); in moveAb() 233 public void deleteOdex(String apkPath, String instructionSet, String outputPath) in deleteOdex() argument 235 mInstaller.execute("delete_odex", apkPath, instructionSet, outputPath); in deleteOdex()
|
D | PackageDexOptimizer.java | 338 for (String apkPath : pkg.getAllCodePathsExcludingResourceOnly()) { in isUsedByOtherApps() 340 apkPath = PackageManagerServiceUtils.realpath(new File(apkPath)); in isUsedByOtherApps() 346 String useMarker = apkPath.replace('/', '@'); in isUsedByOtherApps()
|
D | ProcessLoggingHandler.java | 71 void invalidateProcessLoggingBaseApkHash(String apkPath) { in invalidateProcessLoggingBaseApkHash() argument 73 data.putString("apkFile", apkPath); in invalidateProcessLoggingBaseApkHash()
|
/frameworks/base/test-runner/src/android/test/ |
D | ClassPathPackageInfoSource.java | 124 for (String apkPath : apkPaths) { in findClasses() 125 File file = new File(apkPath); in findClasses() 207 private void findClassesInApk(String apkPath, String packageName, in findClassesInApk() argument 213 dexFile = new DexFile(apkPath); in findClassesInApk() 234 "Error finding classes at apk path: " + apkPath, e); in findClassesInApk()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | InstallerConnection.java | 137 public void dexopt(String apkPath, int uid, String instructionSet, int dexoptNeeded, in dexopt() argument 140 dexopt(apkPath, uid, "*", instructionSet, dexoptNeeded, null /*outputPath*/, dexFlags, in dexopt() 144 public void dexopt(String apkPath, int uid, String pkgName, String instructionSet, in dexopt() argument 148 apkPath, in dexopt()
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageParser.java | 893 private static int loadApkIntoAssetManager(AssetManager assets, String apkPath, int flags) in loadApkIntoAssetManager() argument 895 if ((flags & PARSE_MUST_BE_APK) != 0 && !isApkPath(apkPath)) { in loadApkIntoAssetManager() 897 "Invalid package file: " + apkPath); in loadApkIntoAssetManager() 903 int cookie = assets.addAssetPath(apkPath); in loadApkIntoAssetManager() 906 "Failed adding asset path: " + apkPath); in loadApkIntoAssetManager() 913 final String apkPath = apkFile.getAbsolutePath(); in parseBaseApk() local 916 if (apkPath.startsWith(MNT_EXPAND)) { in parseBaseApk() 917 final int end = apkPath.indexOf('/', MNT_EXPAND.length()); in parseBaseApk() 918 volumeUuid = apkPath.substring(MNT_EXPAND.length(), end); in parseBaseApk() 924 if (DEBUG_JAR) Slog.d(TAG, "Scanning base APK: " + apkPath); in parseBaseApk() [all …]
|
/frameworks/multidex/library/src/android/support/multidex/ |
D | MultiDex.java | 112 String apkPath = applicationInfo.sourceDir; in install() local 113 if (installedApk.contains(apkPath)) { in install() 116 installedApk.add(apkPath); in install()
|
/frameworks/base/core/java/android/webkit/ |
D | WebViewFactory.java | 479 private static String getLoadFromApkPath(String apkPath, in getLoadFromApkPath() argument 483 try (ZipFile z = new ZipFile(apkPath)) { in getLoadFromApkPath() 489 return apkPath + "!/" + entry; in getLoadFromApkPath()
|
/frameworks/base/core/jni/ |
D | com_android_internal_content_NativeLibraryHelper.cpp | 550 com_android_internal_content_NativeLibraryHelper_openApk(JNIEnv *env, jclass, jstring apkPath) in com_android_internal_content_NativeLibraryHelper_openApk() argument 552 ScopedUtfChars filePath(env, apkPath); in com_android_internal_content_NativeLibraryHelper_openApk()
|