HomeSort by relevance Sort by last modified time
    Searched refs:codePath (Results 1 - 15 of 15) sorted by null

  /frameworks/base/services/core/java/com/android/server/pm/
PendingPackage.java 25 PendingPackage(String name, String realName, File codePath, File resourcePath,
30 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString,
CompilerStats.java 81 public long getCompileTime(String codePath) {
82 String storagePath = getStoredPathFromCodePath(codePath);
92 public void setCompileTime(String codePath, long compileTimeInMs) {
93 String storagePath = getStoredPathFromCodePath(codePath);
103 private static String getStoredPathFromCodePath(String codePath) {
104 int lastSlash = codePath.lastIndexOf(File.separatorChar);
105 return codePath.substring(lastSlash + 1);
236 String codePath = s.substring(1, colonIndex);
238 currentPackage.setCompileTime(codePath, time);
OtaDexoptService.java 254 File codePath = new File(pkg.codePath);
255 if (codePath.isDirectory()) {
256 return PackageDexOptimizer.getOatDir(codePath).getAbsolutePath();
263 for (String codePath : pkg.getAllCodePaths()) {
266 mPackageManagerService.mInstaller.deleteOdex(codePath, isa, getOatDir(pkg));
268 Log.e(TAG, "Failed deleting oat files for " + codePath, e);
322 if (pkg.codePath == null) {
323 Slog.w(TAG, "Package " + pkg + " can be optimized but has null codePath");
329 if (pkg.codePath.startsWith("/system") || pkg.codePath.startsWith("/vendor"))
    [all...]
PackageSetting.java 34 PackageSetting(String name, String realName, File codePath, File resourcePath,
39 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString,
PackageSettingBase.java 63 File codePath;
135 PackageSettingBase(String name, String realName, File codePath, File resourcePath,
146 init(codePath, resourcePath, legacyNativeLibraryPathString, primaryCpuAbiString,
159 codePath = base.codePath;
197 void init(File codePath, File resourcePath, String legacyNativeLibraryPathString,
200 this.codePath = codePath;
201 this.codePathString = codePath.toString();
PackageDexOptimizer.java 304 File codePath = new File(pkg.codePath);
305 if (codePath.isDirectory()) {
306 File oatDir = getOatDir(codePath);
318 static File getOatDir(File codePath) {
319 return new File(codePath, OAT_DIR_NAME);
Installer.java 120 String codePath, PackageStats stats) throws InstallerException {
122 ceDataInode, codePath);
173 public void rmdex(String codePath, String instructionSet) throws InstallerException {
175 mInstaller.execute("rmdex", codePath, instructionSet);
Settings.java 429 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
446 PackageSetting p = getPackageLPw(name, origPackage, realName, sharedUser, codePath,
574 PackageSetting ret = addPackageLPw(name, p.realName, p.codePath, p.resourcePath,
591 PackageSetting addPackageLPw(String name, String realName, File codePath, File resourcePath,
605 p = new PackageSetting(name, realName, codePath, resourcePath,
686 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
700 if (!p.codePath.equals(codePath)) {
707 + p.codePathString + " to " + codePath.toString());
711 Slog.i(PackageManagerService.TAG, "Package " + name + " codePath changed from
    [all...]
PackageManagerService.java 676 // Mapping from provider base names (first directory in content URI codePath)
    [all...]
  /art/test/577-profile-foreign-dex/src/
Main.java 48 String codePath = System.getenv("DEX_LOCATION") + "/577-profile-foreign-dex.jar";
52 new String[] { codePath }, foreignDexProfileDir.getPath());
82 String codePath = System.getenv("DEX_LOCATION") + "/577-profile-foreign-dex.jar";
83 loadDexFile(codePath);
84 checkMarker(foreignDexProfileDir, codePath, /* exists */ false);
137 String[] codePath, String foreignDexProfileDir) throws Exception {
138 registerAppInfoMethod.invoke(null, pkgName, appDir, codePath, foreignDexProfileDir);
  /art/test/595-profile-saving/src/
Main.java 29 // String codePath = getDexBaseLocation();
30 String codePath = System.getenv("DEX_LOCATION") + "/595-profile-saving.jar";
33 new String[] {codePath},
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 130 // TODO: refactor "codePath" to "apkPath"
332 public final String codePath;
349 public PackageLite(String codePath, ApkLite baseApk, String[] splitNames,
356 this.codePath = codePath;
357 this.baseCodePath = baseApk.codePath;
381 public final String codePath;
395 public ApkLite(String codePath, String packageName, String splitName, int versionCode,
399 this.codePath = codePath;
    [all...]
ApplicationInfo.java     [all...]
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 540 for (String codePath : pkg.getAllCodePaths()) {
541 final File codeFile = new File(codePath);
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 581 this.packageURI = Uri.fromFile(new File(pkg.codePath));
585 this.packageURI = Uri.fromFile(new File(pkg.codePath));
590 File file = new File(pkg.codePath);
    [all...]

Completed in 418 milliseconds