Home | History | Annotate | Download | only in documentsui

Lines Matching refs:storageVolume

20 import static android.os.storage.StorageVolume.EXTRA_DIRECTORY_NAME;
21 import static android.os.storage.StorageVolume.EXTRA_STORAGE_VOLUME;
66 import android.os.storage.StorageVolume;
84 * Activity responsible for handling {@link StorageVolume#createAccessIntent(String)}.
114 final Parcelable storageVolume = intent.getParcelableExtra(EXTRA_STORAGE_VOLUME);
115 if (!(storageVolume instanceof StorageVolume)) {
117 Log.d(TAG, "extra " + EXTRA_STORAGE_VOLUME + " is not a StorageVolume: "
118 + storageVolume);
126 final StorageVolume volume = (StorageVolume) storageVolume;
157 StorageVolume storageVolume, String directoryName) {
159 activity.getExternalStorageClient(), storageVolume, directoryName, userId, true,
183 args.putString(EXTRA_VOLUME_UUID, storageVolume.getUuid());