Searched refs:rootId (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
D | ExternalStorageProvider.java | 83 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 …]
|
D | TestDocumentsProvider.java | 295 public Cursor queryRecentDocuments(String rootId, String[] projection) in queryRecentDocuments() argument
|
/frameworks/base/core/java/android/provider/ |
D | DocumentsContract.java | 767 public static Uri buildRootUri(String authority, String rootId) { in buildRootUri() argument 769 .authority(authority).appendPath(PATH_ROOT).appendPath(rootId).build(); in buildRootUri() 790 public static Uri buildRecentDocumentsUri(String authority, String rootId) { in buildRecentDocumentsUri() argument 792 .authority(authority).appendPath(PATH_ROOT).appendPath(rootId) in buildRecentDocumentsUri() 917 String authority, String rootId, String query) { in buildSearchDocumentsUri() argument 919 .appendPath(PATH_ROOT).appendPath(rootId).appendPath(PATH_SEARCH) in buildSearchDocumentsUri() 1693 public Path(@Nullable String rootId, List<String> path) { in Path() argument 1697 mRootId = rootId; in Path() 1762 final String rootId = in.readString(); 1764 return new Path(rootId, path);
|
D | DocumentsProvider.java | 458 public Cursor queryRecentDocuments(String rootId, String[] projection) in queryRecentDocuments() argument 613 public Cursor querySearchDocuments(String rootId, String query, String[] projection) in querySearchDocuments() argument 625 public void ejectRoot(String rootId) { in ejectRoot() argument 968 final String rootId = DocumentsContract.getRootId(rootUri); in callUnchecked() local 969 ejectRoot(rootId); in callUnchecked()
|
/frameworks/support/media-compat/api21/android/support/v4/media/ |
D | MediaBrowserServiceCompatApi21.java | 103 BrowserRoot(String rootId, Bundle extras) { in BrowserRoot() argument 104 mRootId = rootId; in BrowserRoot()
|
/frameworks/base/media/java/android/service/media/ |
D | MediaBrowserService.java | 805 public BrowserRoot(@NonNull String rootId, @Nullable Bundle extras) { in BrowserRoot() argument 806 if (rootId == null) { in BrowserRoot() 810 mRootId = rootId; in BrowserRoot()
|
/frameworks/support/media-compat/java/android/support/v4/media/ |
D | MediaBrowserServiceCompat.java | 1560 public BrowserRoot(@NonNull String rootId, @Nullable Bundle extras) { in BrowserRoot() argument 1561 if (rootId == null) { in BrowserRoot() 1565 mRootId = rootId; in BrowserRoot()
|