Home
last modified time | relevance | path

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

/packages/apps/UnifiedEmail/src/org/apache/commons/io/
DFileSystemUtils.java137 public static long freeSpace(String path) throws IOException { in freeSpace() method in FileSystemUtils
350 String freeSpace = tok.nextToken(); in freeSpaceUnix() local
351 return parseBytes(freeSpace, path); in freeSpaceUnix()
363 long parseBytes(String freeSpace, String path) throws IOException { in parseBytes() argument
365 long bytes = Long.parseLong(freeSpace); in parseBytes()
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
DStorageSummaryDonutPreferenceControllerTest.java115 final long freeSpace = KILOBYTE; in testPopulateWithVolume() local
116 final long usedSpace = totalSpace - freeSpace; in testPopulateWithVolume()
122 when(file.getFreeSpace()).thenReturn(freeSpace); in testPopulateWithVolume()
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/
DTopLevelStoragePreferenceControllerTest.java85 final String freeSpace = Formatter.formatFileSize(RuntimeEnvironment.application, 0); in updateSummary_shouldDisplayUsedPercentAndFreeSpace() local
88 R.string.storage_summary, percentage, freeSpace)); in updateSummary_shouldDisplayUsedPercentAndFreeSpace()