Searched refs:dataPath (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/java/com/android/server/pm/
H A DInstaller.java368 * @param dataPath data directory where the application is
372 public int linkNativeLibraryDirectory(String dataPath, String nativeLibPath, int userId) { argument
373 if (dataPath == null) {
374 Slog.e(TAG, "linkNativeLibraryDirectory dataPath is null");
382 builder.append(dataPath);
H A DPackageManagerService.java3927 File dataPath;
3930 dataPath = new File (Environment.getDataDirectory(), "system");
3931 pkg.applicationInfo.dataDir = dataPath.getPath();
3934 dataPath = getDataPathForPackage(pkg.packageName, 0);
3938 if (dataPath.exists()) {
3941 StructStat stat = Libcore.os.stat(dataPath.getPath());
3944 Slog.e(TAG, "Couldn't stat path " + dataPath.getPath(), e);
4022 pkg.applicationInfo.dataDir = dataPath.getPath();
4026 Log.v(TAG, "Want this data dir: " + dataPath);
4036 if (dataPath
[all...]
H A DSettings.java1348 String dataPath = ai.dataDir;
1353 if (dataPath.indexOf(" ") >= 0 || ai.uid < Process.FIRST_APPLICATION_UID)
1361 // dataPath - path to package's data path
1374 sb.append(dataPath);

Completed in 78 milliseconds