Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/os/storage/
DVolumeInfo.java429 final VolumeInfo privateVol = storage.findPrivateForEmulated(this); in buildStorageVolume() local
430 if (privateVol != null) { in buildStorageVolume()
431 description = storage.getBestVolumeDescription(privateVol); in buildStorageVolume()
432 uuid = StorageManager.convert(privateVol.fsUuid); in buildStorageVolume()
433 derivedFsUuid = privateVol.fsUuid; in buildStorageVolume()
DStorageManager.java873 public @Nullable VolumeInfo findEmulatedForPrivate(VolumeInfo privateVol) { in findEmulatedForPrivate() argument
874 if (privateVol != null) { in findEmulatedForPrivate()
875 return findVolumeById(privateVol.getId().replace("private", "emulated") + ";" in findEmulatedForPrivate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
DStorageNotification.java572 final VolumeInfo privateVol = mContext.getPackageManager().getPrimaryStorageCurrentVolume(); in onMoveFinished() local
573 final String descrip = mStorageManager.getBestVolumeDescription(privateVol); in onMoveFinished()
587 if (privateVol != null && privateVol.getDisk() != null) { in onMoveFinished()
588 intent = buildWizardReadyPendingIntent(privateVol.getDisk()); in onMoveFinished()
589 } else if (privateVol != null) { in onMoveFinished()
590 intent = buildVolumeSettingsPendingIntent(privateVol); in onMoveFinished()
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
DExternalStorageProvider.java218 final VolumeInfo privateVol = mStorageManager.findPrivateForEmulated(volume); in updateVolumesLocked() local
219 title = mStorageManager.getBestVolumeDescription(privateVol); in updateVolumesLocked()
220 storageUuid = StorageManager.convert(privateVol.fsUuid); in updateVolumesLocked()
/frameworks/base/services/core/java/com/android/server/
DStorageManagerService.java1607 final VolumeInfo privateVol = storage.findPrivateForEmulated(vol); in onVolumeCreatedLocked() local
1610 && VolumeInfo.ID_PRIVATE_INTERNAL.equals(privateVol.id)) in onVolumeCreatedLocked()
1611 || Objects.equals(privateVol.fsUuid, mPrimaryStorageUuid)) { in onVolumeCreatedLocked()