Lines Matching refs:RootInfo
42 import com.android.documentsui.base.RootInfo;
145 Map<String, List<RootInfo>> rootsIndex = indexRoots(); in loadInBackgroundLocked()
147 for (Map.Entry<String, List<RootInfo>> rootEntry : rootsIndex.entrySet()) { in loadInBackgroundLocked()
263 private Map<String, List<RootInfo>> indexRoots() { in indexRoots()
264 final Collection<RootInfo> roots = mProviders.getMatchingRootsBlocking(mState); in indexRoots()
265 HashMap<String, List<RootInfo>> rootsIndex = new HashMap<>(); in indexRoots()
266 for (RootInfo root : roots) { in indexRoots()
290 protected boolean shouldIgnoreRoot(RootInfo root) { in shouldIgnoreRoot()
298 protected abstract QueryTask getQueryTask(String authority, List<RootInfo> rootInfos); in getQueryTask()
376 public final List<RootInfo> rootInfos;
381 public QueryTask(String authority, List<RootInfo> rootInfos) { in QueryTask()
405 protected abstract Uri getQueryUri(RootInfo rootInfo); in getQueryUri()
407 protected abstract RootCursorWrapper generateResultCursor(RootInfo rootInfo, in generateResultCursor()
423 final RootInfo rootInfo = rootInfos.get(i); in runInternal()