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.java507 final VolumeInfo privateVol = mContext.getPackageManager().getPrimaryStorageCurrentVolume(); in onMoveFinished() local
508 final String descrip = mStorageManager.getBestVolumeDescription(privateVol); in onMoveFinished()
522 if (privateVol != null && privateVol.getDisk() != null) { in onMoveFinished()
523 intent = buildWizardReadyPendingIntent(privateVol.getDisk()); in onMoveFinished()
524 } else if (privateVol != null) { in onMoveFinished()
525 intent = buildVolumeSettingsPendingIntent(privateVol); in onMoveFinished()
/frameworks/base/core/java/android/os/storage/
DVolumeInfo.java352 final VolumeInfo privateVol = storage.findPrivateForEmulated(this); in buildStorageVolume() local
353 if (privateVol != null) { in buildStorageVolume()
354 description = storage.getBestVolumeDescription(privateVol); in buildStorageVolume()
355 derivedFsUuid = privateVol.fsUuid; in buildStorageVolume()
DStorageManager.java617 public @Nullable VolumeInfo findEmulatedForPrivate(VolumeInfo privateVol) { in findEmulatedForPrivate() argument
618 if (privateVol != null) { in findEmulatedForPrivate()
619 return findVolumeById(privateVol.getId().replace("private", "emulated")); in findEmulatedForPrivate()
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
DExternalStorageProvider.java161 final VolumeInfo privateVol = mStorageManager.findPrivateForEmulated(volume); in updateVolumesLocked() local
162 title = mStorageManager.getBestVolumeDescription(privateVol); in updateVolumesLocked()
/frameworks/base/services/core/java/com/android/server/
DMountService.java1269 final VolumeInfo privateVol = storage.findPrivateForEmulated(vol); in onVolumeCreatedLocked() local
1272 && VolumeInfo.ID_PRIVATE_INTERNAL.equals(privateVol.id)) { in onVolumeCreatedLocked()
1278 } else if (Objects.equals(privateVol.fsUuid, mPrimaryStorageUuid)) { in onVolumeCreatedLocked()