Home
last modified time | relevance | path

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

/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadProvider.java178 Downloads.Impl.COLUMN_TOTAL_BYTES); in addMapping() argument
193 Downloads.Impl.COLUMN_TOTAL_BYTES); in addMapping() argument
231 addMapping(map, Downloads.Impl.COLUMN_TOTAL_BYTES); in addMapping() argument
413 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, -1); in fillNullValues()
551 Downloads.Impl.COLUMN_TOTAL_BYTES + " INTEGER, " + in createDownloadsTable()
784 filteredValues.put(Downloads.Impl.COLUMN_TOTAL_BYTES, in insert()
785 values.getAsLong(Downloads.Impl.COLUMN_TOTAL_BYTES)); in insert()
791 filteredValues.put(Downloads.Impl.COLUMN_TOTAL_BYTES, -1); in insert()
1202 values.remove(Downloads.Impl.COLUMN_TOTAL_BYTES); in checkInsertPermissions()
1818 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, file.length()); in openFile()
DDownloadInfo.java85 info.mTotalBytes = getLong(Downloads.Impl.COLUMN_TOTAL_BYTES); in updateFromDatabase()
DDownloadNotifier.java146 Downloads.Impl.COLUMN_TOTAL_BYTES,
DDownloadThread.java188 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, mTotalBytes); in buildContentValues()
/packages/apps/Messaging/src/com/android/messaging/mmslib/
DDownloads.java283 public static final String COLUMN_TOTAL_BYTES = "total_bytes"; field in Downloads.Impl