Home
last modified time | relevance | path

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

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
DGridDocumentHolder.java20 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
125 final long docLastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in bind()
128 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE); in bind()
DListDocumentHolder.java20 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
121 final long docLastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in bind()
125 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE); in bind()
DModel.java23 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
182 longValues[pos] = getCursorLong(mCursor, Document.COLUMN_SIZE); in updateModelData()
364 long l = getCursorLong(mCursor, Document.COLUMN_LAST_MODIFIED); in getLastModified()
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DFilteringCursorWrapper.java21 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
57 final long lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in FilteringCursorWrapper()
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DDocumentInfo.java159 this.lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in updateFromCursor()
162 this.size = getCursorLong(cursor, Document.COLUMN_SIZE); in updateFromCursor()
297 public static long getCursorLong(Cursor cursor, String columnName) { in getCursorLong() method in DocumentInfo
DRootInfo.java22 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
187 root.availableBytes = getCursorLong(cursor, Root.COLUMN_AVAILABLE_BYTES); in fromRootsCursor()
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
DCopyJob.java26 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
595 long size = getCursorLong(cursor, Document.COLUMN_SIZE); in calculateFileSizesRecursively()