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

/frameworks/base/services/java/com/android/server/pm/
H A DInstaller.java342 public int linkNativeLibraryDirectory(String dataPath, String nativeLibPath) { argument
343 if (dataPath == null) {
344 Slog.e(TAG, "unlinkNativeLibraryDirectory dataPath is null");
352 builder.append(dataPath);
359 public int unlinkNativeLibraryDirectory(String dataPath) { argument
360 if (dataPath == null) {
361 Slog.e(TAG, "unlinkNativeLibraryDirectory dataPath is null");
366 builder.append(dataPath);
H A DPackageManagerService.java3437 File dataPath;
3440 dataPath = new File (Environment.getDataDirectory(), "system");
3441 pkg.applicationInfo.dataDir = dataPath.getPath();
3444 dataPath = getDataPathForPackage(pkg.packageName, 0);
3448 if (dataPath.exists()) {
3450 FileUtils.getPermissions(dataPath.getPath(), mOutPermissions);
3510 pkg.applicationInfo.dataDir = dataPath.getPath();
3514 Log.v(TAG, "Want this data dir: " + dataPath);
3527 if (dataPath.exists()) {
3528 pkg.applicationInfo.dataDir = dataPath
[all...]
H A DSettings.java969 String dataPath = ai.dataDir;
974 if (dataPath.indexOf(" ") >= 0 || ai.uid <= Process.FIRST_APPLICATION_UID)
982 // dataPath - path to package's data path
995 sb.append(dataPath);

Completed in 52 milliseconds