Searched defs:volumeId (Results 1 - 8 of 8) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
H A DFormatAsPublicStepFragment.java42 void onRequestFormatAsPublic(String diskId, String volumeId); argument
H A DSettingsStorageService.java62 public static void unmount(Context context, String volumeId) { argument
65 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, volumeId);
102 final String volumeId = intent.getStringExtra(VolumeInfo.EXTRA_VOLUME_ID);
103 if (TextUtils.isEmpty(volumeId)) {
107 unmount(volumeId);
178 private void unmount(String volumeId) { argument
183 final VolumeInfo volumeInfo = storageManager.findVolumeById(volumeId);
185 Log.d(TAG, "Trying to unmount " + volumeId);
186 storageManager.unmount(volumeId);
201 .putExtra(VolumeInfo.EXTRA_VOLUME_ID, volumeId)
[all...]
H A DUnmountActivity.java56 public static Intent getIntent(Context context, String volumeId, String volumeDesc) { argument
58 i.putExtra(VolumeInfo.EXTRA_VOLUME_ID, volumeId);
155 public static UnmountPrivateStepFragment newInstance(String volumeId) { argument
158 b.putString(VolumeInfo.EXTRA_VOLUME_ID, volumeId);
H A DBackupAppsStepFragment.java63 public static BackupAppsStepFragment newInstance(String volumeId) { argument
66 b.putString(VolumeInfo.EXTRA_VOLUME_ID, volumeId);
H A DFormatActivity.java269 public void onRequestFormatAsPublic(String diskId, String volumeId) { argument
276 if (!TextUtils.isEmpty(volumeId)) {
277 final VolumeInfo info = mStorageManager.findVolumeById(volumeId);
H A DMigrateStorageActivity.java75 public static Intent getLaunchIntent(Context context, String volumeId, argument
78 i.putExtra(VolumeInfo.EXTRA_VOLUME_ID, volumeId);
88 final String volumeId = intent.getStringExtra(VolumeInfo.EXTRA_VOLUME_ID);
92 mTargetVolumeInfo = storageManager.findVolumeById(volumeId);
103 mVolumeInfo = storageManager.findVolumeById(volumeId);
267 final String volumeId = getArguments().getString(VolumeInfo.EXTRA_VOLUME_ID);
269 if (TextUtils.equals(candidate.getId(), volumeId)) {
H A DNewStorageActivity.java58 public static Intent getNewStorageLaunchIntent(Context context, String volumeId, argument
62 i.putExtra(VolumeInfo.EXTRA_VOLUME_ID, volumeId);
82 final String volumeId = getIntent().getStringExtra(VolumeInfo.EXTRA_VOLUME_ID);
84 if (TextUtils.isEmpty(volumeId) && TextUtils.isEmpty(diskId)) {
90 .add(android.R.id.content, NewStorageFragment.newInstance(volumeId, diskId))
129 public static NewStorageFragment newInstance(String volumeId, String diskId) { argument
131 b.putString(VolumeInfo.EXTRA_VOLUME_ID, volumeId);
423 final String volumeId = intent.getStringExtra(VolumeInfo.EXTRA_VOLUME_ID);
427 if (!TextUtils.equals(info.getId(), volumeId)) {
433 && !TextUtils.equals(volumeId, VolumeInf
[all...]
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DStorageSettings.java387 public static void show(Fragment parent, String volumeId) { argument
389 args.putString(VolumeInfo.EXTRA_VOLUME_ID, volumeId);
402 final String volumeId = getArguments().getString(VolumeInfo.EXTRA_VOLUME_ID);
403 final VolumeInfo vol = sm.findVolumeById(volumeId);

Completed in 126 milliseconds