Home
last modified time | relevance | path

Searched refs:rootId (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
DExternalStorageProvider.java83 public String rootId; field in ExternalStorageProvider.RootInfo
129 final String rootId; in updateVolumesLocked() local
136 rootId = ROOT_ID_PRIMARY_EMULATED; in updateVolumesLocked()
161 rootId = volume.getFsUuid(); in updateVolumesLocked()
169 if (TextUtils.isEmpty(rootId)) { in updateVolumesLocked()
173 if (mRoots.containsKey(rootId)) { in updateVolumesLocked()
174 Log.w(TAG, "Duplicate UUID " + rootId + " for " + volume.getId() + "; skipping"); in updateVolumesLocked()
179 mRoots.put(rootId, root); in updateVolumesLocked()
181 root.rootId = rootId; in updateVolumesLocked()
189 if (DEBUG) Log.d(TAG, "Disk for root " + rootId + " is " + disk); in updateVolumesLocked()
[all …]
DTestDocumentsProvider.java295 public Cursor queryRecentDocuments(String rootId, String[] projection) in queryRecentDocuments() argument
/frameworks/base/core/java/android/provider/
DDocumentsContract.java749 public static Uri buildRootUri(String authority, String rootId) { in buildRootUri() argument
751 .authority(authority).appendPath(PATH_ROOT).appendPath(rootId).build(); in buildRootUri()
772 public static Uri buildRecentDocumentsUri(String authority, String rootId) { in buildRecentDocumentsUri() argument
774 .authority(authority).appendPath(PATH_ROOT).appendPath(rootId) in buildRecentDocumentsUri()
899 String authority, String rootId, String query) { in buildSearchDocumentsUri() argument
901 .appendPath(PATH_ROOT).appendPath(rootId).appendPath(PATH_SEARCH) in buildSearchDocumentsUri()
1592 public Path(@Nullable String rootId, List<String> path) { in Path() argument
1596 mRootId = rootId; in Path()
1661 final String rootId = in.readString();
1663 return new Path(rootId, path);
DDocumentsProvider.java459 public Cursor queryRecentDocuments(String rootId, String[] projection) in queryRecentDocuments() argument
614 public Cursor querySearchDocuments(String rootId, String query, String[] projection) in querySearchDocuments() argument
626 public void ejectRoot(String rootId) { in ejectRoot() argument
963 final String rootId = DocumentsContract.getRootId(rootUri); in callUnchecked() local
964 ejectRoot(rootId); in callUnchecked()
/frameworks/support/media-compat/api21/android/support/v4/media/
DMediaBrowserServiceCompatApi21.java103 BrowserRoot(String rootId, Bundle extras) { in BrowserRoot() argument
104 mRootId = rootId; in BrowserRoot()
/frameworks/base/media/java/android/service/media/
DMediaBrowserService.java787 public BrowserRoot(@NonNull String rootId, @Nullable Bundle extras) { in BrowserRoot() argument
788 if (rootId == null) { in BrowserRoot()
792 mRootId = rootId; in BrowserRoot()
/frameworks/support/media-compat/java/android/support/v4/media/
DMediaBrowserServiceCompat.java1541 public BrowserRoot(@NonNull String rootId, @Nullable Bundle extras) { in BrowserRoot() argument
1542 if (rootId == null) { in BrowserRoot()
1546 mRootId = rootId; in BrowserRoot()