Searched refs:getCursorLong (Results 1 – 7 of 7) sorted by relevance
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/base/ |
H A D | FilteringCursorWrapper.java | 19 import static com.android.documentsui.base.DocumentInfo.getCursorLong; 68 final long lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in filterLastModified()
|
H A D | DocumentInfo.java | 181 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 D | RootInfo.java | 22 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 D | SortingCursorWrapper.java | 19 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 D | GridPhotoHolder.java | 20 import static com.android.documentsui.base.DocumentInfo.getCursorLong; 156 Formatter.formatFileSize(mContext, getCursorLong(cursor, Document.COLUMN_SIZE)); in bind()
|
H A D | GridDocumentHolder.java | 20 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 D | CopyJob.java | 27 import static com.android.documentsui.base.DocumentInfo.getCursorLong; 762 long size = getCursorLong(cursor, Document.COLUMN_SIZE); in calculateFileSizesRecursively()
|