Searched refs:apkPath (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java135 public void dexopt(String apkPath, int uid, String instructionSet, int dexoptNeeded, argument
139 mInstaller.dexopt(apkPath, uid, instructionSet, dexoptNeeded, dexFlags,
143 public void dexopt(String apkPath, int uid, String pkgName, String instructionSet, argument
148 mInstaller.dexopt(apkPath, uid, pkgName, instructionSet, dexoptNeeded,
221 public void moveAb(String apkPath, String instructionSet, String outputPath) argument
223 mInstaller.execute("move_ab", apkPath, instructionSet, outputPath);
H A DProcessLoggingHandler.java71 void invalidateProcessLoggingBaseApkHash(String apkPath) { argument
73 data.putString("apkFile", apkPath);
H A DPackageDexOptimizer.java329 for (String apkPath : pkg.getAllCodePathsExcludingResourceOnly()) {
331 apkPath = PackageManagerServiceUtils.realpath(new File(apkPath));
337 String useMarker = apkPath.replace('/', '@');
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfoSource.java124 for (String apkPath : apkPaths) {
125 File file = new File(apkPath);
207 private void findClassesInApk(String apkPath, String packageName, argument
213 dexFile = new DexFile(apkPath);
234 "Error finding classes at apk path: " + apkPath, e);
/frameworks/base/core/java/com/android/internal/os/
H A DInstallerConnection.java137 public void dexopt(String apkPath, int uid, String instructionSet, int dexoptNeeded, argument
140 dexopt(apkPath, uid, "*", instructionSet, dexoptNeeded, null /*outputPath*/, dexFlags,
144 public void dexopt(String apkPath, int uid, String pkgName, String instructionSet, argument
148 apkPath,
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDex.java112 String apkPath = applicationInfo.sourceDir;
113 if (installedApk.contains(apkPath)) {
116 installedApk.add(apkPath);
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java130 // TODO: refactor "codePath" to "apkPath"
888 private static int loadApkIntoAssetManager(AssetManager assets, String apkPath, int flags) argument
890 if ((flags & PARSE_MUST_BE_APK) != 0 && !isApkPath(apkPath)) {
892 "Invalid package file: " + apkPath);
898 int cookie = assets.addAssetPath(apkPath);
901 "Failed adding asset path: " + apkPath);
908 final String apkPath = apkFile.getAbsolutePath();
911 if (apkPath.startsWith(MNT_EXPAND)) {
912 final int end = apkPath.indexOf('/', MNT_EXPAND.length());
913 volumeUuid = apkPath
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewFactory.java479 private static String getLoadFromApkPath(String apkPath, argument
483 try (ZipFile z = new ZipFile(apkPath)) {
489 return apkPath + "!/" + entry;
/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp550 com_android_internal_content_NativeLibraryHelper_openApk(JNIEnv *env, jclass, jstring apkPath) argument
552 ScopedUtfChars filePath(env, apkPath);

Completed in 503 milliseconds