Lines Matching defs:path

1047              * path has been dexed.
1049 String bootClassPath = System.getProperty("java.boot.class.path");
1060 Slog.w(TAG, "Boot class path not found: " + paths[i]);
1105 String path = libPath.getPath();
1107 if (libFiles.contains(path)) {
1111 if (!path.endsWith(".apk") && !path.endsWith(".jar")) {
1115 if (dalvik.system.DexFile.isDexOptNeeded(path)) {
1116 mInstaller.dexopt(path, Process.SYSTEM_UID, true);
1120 Slog.w(TAG, "Jar not found: " + path);
1122 Slog.w(TAG, "Exception reading jar: " + path, e);
3265 // The path has changed from what was last scanned... check the
3266 // version of the new path against what we have stored to determine
3269 // The system package has been updated and the code path does not match
3372 Slog.e(TAG, "Resource path not set for pkg : " + pkg.packageName);
3378 // Set application objects path explicitly.
3515 String path = pkg.mScanPath;
3518 if (forceDex || dalvik.system.DexFile.isDexOptNeeded(path)) {
3525 ret = mInstaller.dexopt(path, sharedGid, !isForwardLocked(pkg));
3531 Slog.w(TAG, "Apk not found for dexopt: " + path);
3534 Slog.w(TAG, "IOException reading apk: " + path, e);
3537 Slog.w(TAG, "StaleDexCacheError when reading apk: " + path, e);
3701 // Check all shared libraries and map to their actual file path.
3949 Slog.e(TAG, "Couldn't stat path " + dataPath.getPath(), e);
3952 // If we have mismatched owners for the data path, we have a problem.
4056 * doesn't have a native library path attribute at all.
4069 String path = scanFile.getPath();
4090 * Recent changes in the JNI library search path
4095 + path);
4121 if (DEBUG_INSTALL) Slog.i(TAG, "Linking native library dir for " + path);
4139 pkg.mScanPath = path;
5478 public AppDirObserver(String path, int mask, boolean isrom) {
5479 super(path, mask);
5480 mRootDir = path;
5484 public void onEvent(int event, String path) {
5496 if (path != null) {
5497 fullPath = new File(mRootDir, path);
5504 if (!isPackageFilename(path)) {
6988 // Rename library path
7141 * Extract the MountService "container ID" from the full code path of an
7309 Slog.w(TAG, "Failed to get cache path for " + newCacheId);
7314 " at new path: " + newCachePath);
7494 // Utility method that returns the relative package path with respect
7506 Slog.w(TAG, " Invalid code path, "+ codePath + " Not a valid apk name");
7883 // Get rid of all references to package scan path via parser.
7929 // Set application objects path explicitly after the rename
8029 Slog.e(TAG, "Trouble getting the canoncical path for a temp file.");
9612 // The package status is changed only if the code path
9617 + " at code path: " + ps.codePathString);
9700 // Check code path here.
9955 Slog.w(TAG, "Package " + mp.packageName + " code path changed from "
9983 + " code path changed from " + mp.srcArgs.getCodePath()
10123 void createNewUserLILPw(int userHandle, File path) {
10125 mSettings.createNewUserLILPw(mInstaller, userHandle, path);