Home
last modified time | relevance | path

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

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DRootCursorWrapper.java26 public class RootCursorWrapper extends AbstractCursor { class
41 public RootCursorWrapper(String authority, String rootId, Cursor cursor, int maxCount) { in RootCursorWrapper() method in RootCursorWrapper
DDirectoryLoader.java168 cursor = new RootCursorWrapper(mUri.getAuthority(), mRoot.rootId, cursor, -1); in loadInBackground()
DRecentLoader.java133 mWithRoot = new RootCursorWrapper(authority, rootId, cursor, MAX_DOCS_FROM_ROOT); in runInternal()
DDirectoryFragment.java773 final String docAuthority = getCursorString(cursor, RootCursorWrapper.COLUMN_AUTHORITY); in getDocumentView()
774 final String docRootId = getCursorString(cursor, RootCursorWrapper.COLUMN_ROOT_ID); in getDocumentView()
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DDocumentInfo.java31 import com.android.documentsui.RootCursorWrapper;
150 final String authority = getCursorString(cursor, RootCursorWrapper.COLUMN_AUTHORITY); in fromDirectoryCursor()