Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/src/com/android/documentsui/roots/
DProvidersCache.java351 ArrayList<RootInfo> cachedRoots = systemCache.getParcelableArrayList(TAG);
352 assert (cachedRoots != null);
353 if (!cachedRoots.isEmpty() || PERMIT_EMPTY_CACHE.contains(authority)) {
355 return cachedRoots;
485 ArrayList<RootInfo> cachedRoots = systemCache.getParcelableArrayList(TAG);
486 for (RootInfo root : cachedRoots) {
/packages/apps/DocumentsUI/src/com/android/documentsui/
DRootsMonitor.java112 final Collection<RootInfo> cachedRoots = mProviders.getRootsBlocking(); in run() local
113 for (final RootInfo root : cachedRoots) { in run()