Searched refs:getPath (Results 26 - 50 of 161) sorted by last modified time

1234567

/frameworks/base/services/core/java/com/android/server/
H A DDiskStatsService.java93 StatFs statfs = new StatFs(path.getPath());
H A DDropBoxManagerService.java422 out.append(entry.file.getPath()).append("\n");
636 mStatFs = new StatFs(mDropBoxDir.getPath());
771 mStatFs.restat(mDropBoxDir.getPath());
H A DMountService.java933 mCallbacks.notifyStorageStateChanged(userVol.getPath(), envState, envState);
1381 mCallbacks.notifyStorageStateChanged(userVol.getPath(), oldStateEnv,
1492 Slog.e(TAG, "Unable to create fstrim record " + mLastMaintenanceFile.getPath());
3040 || (includeInvisible && vol.getPath() != null);
H A DSamplingProfilerService.java82 if (LOCAL_LOGV) Slog.v(TAG, file.getPath() + " added to dropbox");
84 Slog.e(TAG, "Can't add " + file.getPath() + " to dropbox", e);
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java4183 return databaseFile.getPath();
4190 return databaseFile.getPath();
4197 return databaseFile.getPath();
4544 db.execSQL("ATTACH DATABASE '" + ceDbFile.getPath()+ "' AS ceDb");
4577 db.execSQL("ATTACH DATABASE '" + preNDbFile.getPath() + "' AS preNDb");
4624 deDatabaseFile.getPath());
4629 preNDatabaseFile.getPath());
4774 CeDatabaseHelper ceHelper = new CeDatabaseHelper(context, ceDatabaseFile.getPath());
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java5217 FileUtils.setPermissions(tracesFile.getPath(), 0666, -1, -1); // -rw-rw-rw-
5351 FileUtils.setPermissions(tracesFile.getPath(), 0666, -1, -1); // -rw-rw-rw-
7776 final String path = grantUri.uri.getPath();
7785 "Checking read perm for " + pprperm + " for " + pp.getPath()
7800 "Checking write perm " + ppwperm + " for " + pp.getPath()
8070 && pi.uriPermissionPatterns[i].match(grantUri.uri.getPath())) {
9436 if (!legitIconFile.getPath().equals(filePath)
H A DProcessStatsService.java345 String currentFile = mFile.getBaseFile().getPath();
349 String fileStr = file.getPath();
894 String fileStr = file.getBaseFile().getPath();
941 String fileStr = file.getBaseFile().getPath();
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java1845 String path = file.getPath();
/frameworks/base/services/core/java/com/android/server/firewall/
H A DStringFilter.java333 return data.getPath();
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java1174 FileUtils.setPermissions(file.getBaseFile().getPath(),
2293 mAsecInternalPath = new File(dataDir, "app-asec").getPath();
8410 final String path = scanFile.getPath();
9365 return Environment.getRootDirectory().getPath();
9368 return codeRoot.getPath();
9477 has64BitLibs = (new File(apkRoot, new File(LIB64_DIR_NAME, apkName).getPath())).exists();
9478 has32BitLibs = (new File(apkRoot, new File(LIB_DIR_NAME, apkName).getPath())).exists();
19335 ResourcesManager.getInstance().invalidatePath(vol.getPath().getAbsolutePath());
20091 measurePath = storage.getPrimaryPhysicalVolume().getPath();
H A DSettings.java3053 if (!f.getPath().endsWith(".xml")) {
3136 builder.opaquePart(ssp.getPath());
3153 builder.path(path.getPath());
3275 filter.addDataSchemeSpecificPart(ssp.getPath(), ssp.getType());
H A DUserManagerService.java1576 dir.getPath(),
/frameworks/base/services/core/java/com/android/server/updates/
H A DSELinuxPolicyInstallReceiver.java110 Os.rename(current.getPath(), backup.getPath());
113 Os.rename(tmp.getPath(), current.getPath());
118 Os.rename(backup.getPath(), current.getPath());
H A DTzDataInstallReceiver.java33 private static final String UPDATE_DIR_NAME = TZ_DATA_DIR.getPath() + "/updates/";
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java1430 dir.getPath(),
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DOwners.java491 Slog.e(TAG, "Failed to remove " + mFile.getPath());
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DDropBoxTest.java332 int blockSize = new StatFs(dir.getPath()).getBlockSize();
433 int blockSize = new StatFs(dir.getPath()).getBlockSize();
H A DMountServiceTests.java66 public String getPath() { method in class:MountServiceTests.ObbObserver
117 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
120 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
133 assertTrue("mountObb call on " + file.getPath() + " should succeed",
134 sm.mountObb(file.getPath(), null, observer));
140 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
144 file.getPath(), observer.getPath());
154 assertTrue("mountObb call on " + file.getPath() + " should succeed", sm.mountObb(file
155 .getPath(), nul
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountManagerServiceTest.java439 return new File(mRealTestContext.getCacheDir(), CE_DB).getPath();
444 return new File(mRealTestContext.getCacheDir(), DE_DB).getPath();
449 return new File(mRealTestContext.getCacheDir(), PREN_DB).getPath();
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DPackageManagerSettingsTests.java67 Log.e(TAG, "Cannot write file " + file.getPath());
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUsageStatsDatabase.java139 if (files.valueAt(i).getBaseFile().getPath().endsWith(CHECKED_IN_SUFFIX)) {
167 file.getBaseFile().getPath() + CHECKED_IN_SUFFIX);
171 Slog.e(TAG, "Failed to mark file " + file.getBaseFile().getPath()
515 String path = f.getPath();
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbPortManager.java642 return fileIsRootWritable(new File(portDir, SYSFS_PORT_MODE).getPath());
646 return fileIsRootWritable(new File(portDir, SYSFS_PORT_POWER_ROLE).getPath());
650 return fileIsRootWritable(new File(portDir, SYSFS_PORT_DATA_ROLE).getPath());
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfoSource.java139 if (source.getPath().endsWith(".apk")) {
140 findClassesInApk(source.getPath(), packageName, classNames, subpackageNames);
H A DRenamingDelegatingContext.java241 mCacheDir.getPath(),
/frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
H A DLowStorageTest.java52 StatFs stat = new StatFs(path.getPath());
80 StatFs stat = new StatFs(path.getPath());
122 StatFs stat = new StatFs(path.getPath());

Completed in 1725 milliseconds

1234567