Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/os/storage/
DVolumeInfo.java338 File userPath = getPathForUser(userId); in buildStorageVolume() local
339 if (userPath == null) { in buildStorageVolume()
340 userPath = new File("/dev/null"); in buildStorageVolume()
362 mtpReserveSize = storage.getStorageLowBytes(userPath); in buildStorageVolume()
396 return new StorageVolume(id, mtpStorageId, userPath, description, isPrimary(), removable, in buildStorageVolume()
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DOpenExternalDirectoryActivity.java288 final File userPath = volume.getPathForUser(userId); in isRightVolume() local
289 final String path = userPath == null ? null : volume.getPathForUser(userId).getPath(); in isRightVolume()
294 + "\n\tuserPath: " + userPath in isRightVolume()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/deviceinfo/
DStorageMeasurement.java396 final File userPath = mSharedVolume.getPathForUser(user.id); in measureExactStorage() local
397 final long size = getDirectorySize(imcs, userPath); in measureExactStorage()