Home
last modified time | relevance | path

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

/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DDefaultContainerService.java214 String codePath = packageURI.getPath(); in copyResourceInner() local
215 File codeFile = new File(codePath); in copyResourceInner()
258 if (!FileUtils.copyFile(new File(codePath), resFile)) { in copyResourceInner()
259 Log.e(TAG, "Failed to copy " + codePath + " to " + resFile); in copyResourceInner()
290 if (localLOGV) Log.i(TAG, "Copied " + codePath + " to " + resFile); in copyResourceInner()
/frameworks/base/services/java/com/android/server/
DPackageManagerService.java1068 if (ps.codePath != null) { in cleanupInstallFailedPackage()
1069 if (!ps.codePath.delete()) { in cleanupInstallFailedPackage()
1070 Slog.w(TAG, "Unable to remove old code file: " + ps.codePath); in cleanupInstallFailedPackage()
1074 if (!ps.resourcePath.delete() && !ps.resourcePath.equals(ps.codePath)) { in cleanupInstallFailedPackage()
2605 && ps.codePath.equals(srcFile) in collectCertificatesLI()
2667 if (ps != null && !ps.codePath.equals(scanFile)) { in scanPackageLI()
2713 if (ps != null && !ps.codePath.equals(ps.resourcePath)) { in scanPackageLI()
2717 String codePath = null; in scanPackageLI() local
2729 codePath = pkg.mScanPath; in scanPackageLI()
2731 setApplicationInfoPaths(pkg, codePath, resPath); in scanPackageLI()
[all …]
DInstaller.java205 public int rmdex(String codePath) { in rmdex() argument
208 builder.append(codePath); in rmdex()