Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/src/com/android/documentsui/
DRecentsLoader.java122 Map<String, List<String>> rootsIndex = indexRecentsRoots(); in loadInBackgroundLocked() local
124 for (String authority : rootsIndex.keySet()) { in loadInBackgroundLocked()
125 mTasks.put(authority, new RecentsTask(authority, rootsIndex.get(authority))); in loadInBackgroundLocked()
217 HashMap<String, List<String>> rootsIndex = new HashMap<>(); in indexRecentsRoots() local
223 if (!rootsIndex.containsKey(root.authority)) { in indexRecentsRoots()
224 rootsIndex.put(root.authority, new ArrayList<>()); in indexRecentsRoots()
226 rootsIndex.get(root.authority).add(root.rootId); in indexRecentsRoots()
229 return rootsIndex; in indexRecentsRoots()