Home
last modified time | relevance | path

Searched refs:privateVol (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
DStorageNotification.java516 final VolumeInfo privateVol = mContext.getPackageManager().getPrimaryStorageCurrentVolume(); in onMoveFinished() local
517 final String descrip = mStorageManager.getBestVolumeDescription(privateVol); in onMoveFinished()
531 if (privateVol != null && privateVol.getDisk() != null) { in onMoveFinished()
532 intent = buildWizardReadyPendingIntent(privateVol.getDisk()); in onMoveFinished()
533 } else if (privateVol != null) { in onMoveFinished()
534 intent = buildVolumeSettingsPendingIntent(privateVol); in onMoveFinished()
/frameworks/base/core/java/android/os/storage/
DVolumeInfo.java387 final VolumeInfo privateVol = storage.findPrivateForEmulated(this); in buildStorageVolume() local
388 if (privateVol != null) { in buildStorageVolume()
389 description = storage.getBestVolumeDescription(privateVol); in buildStorageVolume()
390 derivedFsUuid = privateVol.fsUuid; in buildStorageVolume()
DStorageManager.java785 public @Nullable VolumeInfo findEmulatedForPrivate(VolumeInfo privateVol) { in findEmulatedForPrivate() argument
786 if (privateVol != null) { in findEmulatedForPrivate()
787 return findVolumeById(privateVol.getId().replace("private", "emulated")); in findEmulatedForPrivate()
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
DExternalStorageProvider.java186 final VolumeInfo privateVol = mStorageManager.findPrivateForEmulated(volume); in updateVolumesLocked() local
187 title = mStorageManager.getBestVolumeDescription(privateVol); in updateVolumesLocked()
188 storageUuid = StorageManager.convert(privateVol.fsUuid); in updateVolumesLocked()
/frameworks/base/services/core/java/com/android/server/
DStorageManagerService.java1258 final VolumeInfo privateVol = storage.findPrivateForEmulated(vol); in onVolumeCreatedLocked() local
1261 && VolumeInfo.ID_PRIVATE_INTERNAL.equals(privateVol.id)) { in onVolumeCreatedLocked()
1267 } else if (Objects.equals(privateVol.fsUuid, mPrimaryStorageUuid)) { in onVolumeCreatedLocked()