Home | History | Annotate | Download | only in storage

Lines Matching defs:StorageVolume

77 public final class StorageVolume implements Parcelable {
98 * contains a {@link StorageVolume}.
122 public StorageVolume(String id, File path, File internalPath, String description,
139 private StorageVolume(Parcel in) {
332 if (obj instanceof StorageVolume && mPath != null) {
333 StorageVolume volume = (StorageVolume)obj;
346 final StringBuilder buffer = new StringBuilder("StorageVolume: ").append(mDescription);
363 pw.println("StorageVolume:");
380 public static final Creator<StorageVolume> CREATOR = new Creator<StorageVolume>() {
382 public StorageVolume createFromParcel(Parcel in) {
383 return new StorageVolume(in);
387 public StorageVolume[] newArray(int size) {
388 return new StorageVolume[size];