Searched defs:RootInfo (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DRootInfo.java51 public class RootInfo implements Durable, Parcelable, Comparable<RootInfo> { class in inherits:Durable,Parcelable,Comparable
53 private static final String TAG = "RootInfo";
98 public RootInfo() { method in class:RootInfo
164 public static final Creator<RootInfo> CREATOR = new Creator<RootInfo>() {
166 public RootInfo createFromParcel(Parcel in) {
167 final RootInfo root = new RootInfo();
173 public RootInfo[] newArra
[all...]
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
H A DStubProvider.java88 private final Map<String, RootInfo> mRoots = new HashMap<>();
128 final RootInfo rootInfo = new RootInfo(file, getSize(rootId));
151 for (Map.Entry<String, RootInfo> entry : mRoots.entrySet()) {
153 final RootInfo info = entry.getValue();
628 RootInfo root = mRoots.get(rootId);
715 final static class RootInfo { class in class:StubProvider
725 RootInfo(File file, long capacity) { method in class:StubProvider.RootInfo
752 public final RootInfo rootInfo;
765 private StubDocument(File file, RootInfo rootInf
[all...]
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java87 private static class RootInfo { class in class:ExternalStorageProvider
107 private ArrayMap<String, RootInfo> mRoots = new ArrayMap<>();
182 final RootInfo root = new RootInfo();
227 final RootInfo root = new RootInfo();
327 RootInfo root;
402 for (RootInfo root : mRoots.values()) {
648 final RootInfo root = mRoots.valueAt(i);

Completed in 81 milliseconds