Home
last modified time | relevance | path

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

/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/base/
H A DFilteringCursorWrapper.java19 import static com.android.documentsui.base.DocumentInfo.getCursorLong;
68 final long lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in filterLastModified()
H A DDocumentInfo.java181 this.lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in updateFromCursor()
184 this.size = getCursorLong(cursor, Document.COLUMN_SIZE); in updateFromCursor()
394 public static long getCursorLong(Cursor cursor, String columnName) { in getCursorLong() method in DocumentInfo
H A DRootInfo.java22 import static com.android.documentsui.base.DocumentInfo.getCursorLong;
237 root.availableBytes = getCursorLong(cursor, Root.COLUMN_AVAILABLE_BYTES); in fromRootsCursor()
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
H A DSortingCursorWrapper.java19 import static com.android.documentsui.base.DocumentInfo.getCursorLong;
86 longValues[i] = getCursorLong(mCursor, Document.COLUMN_SIZE); in SortingCursorWrapper()
187 long l = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in getLastModified()
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
H A DGridPhotoHolder.java20 import static com.android.documentsui.base.DocumentInfo.getCursorLong;
156 Formatter.formatFileSize(mContext, getCursorLong(cursor, Document.COLUMN_SIZE)); in bind()
H A DGridDocumentHolder.java20 import static com.android.documentsui.base.DocumentInfo.getCursorLong;
189 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE); in bind()
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/services/
H A DCopyJob.java27 import static com.android.documentsui.base.DocumentInfo.getCursorLong;
762 long size = getCursorLong(cursor, Document.COLUMN_SIZE); in calculateFileSizesRecursively()