Home
last modified time | relevance | path

Searched refs:filteredValues (Results 1 – 2 of 2) sorted by relevance

/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadProvider.java566 ContentValues filteredValues = new ContentValues(); in insert() local
567 copyString(Downloads.Impl.COLUMN_URI, values, filteredValues); in insert()
568 copyString(Downloads.Impl.COLUMN_APP_DATA, values, filteredValues); in insert()
569 copyBoolean(Downloads.Impl.COLUMN_NO_INTEGRITY, values, filteredValues); in insert()
570 copyString(Downloads.Impl.COLUMN_FILE_NAME_HINT, values, filteredValues); in insert()
571 copyString(Downloads.Impl.COLUMN_MIME_TYPE, values, filteredValues); in insert()
572 copyBoolean(Downloads.Impl.COLUMN_IS_PUBLIC_API, values, filteredValues); in insert()
618 filteredValues.put(Downloads.Impl.COLUMN_DESTINATION, dest); in insert()
625 filteredValues.put(Downloads.Impl.COLUMN_VISIBILITY, in insert()
628 filteredValues.put(Downloads.Impl.COLUMN_VISIBILITY, in insert()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppProvider.java229 ContentValues filteredValues = new ContentValues(); in insert() local
231 copyString(BluetoothShare.URI, values, filteredValues); in insert()
232 copyString(BluetoothShare.FILENAME_HINT, values, filteredValues); in insert()
233 copyString(BluetoothShare.MIMETYPE, values, filteredValues); in insert()
234 copyString(BluetoothShare.DESTINATION, values, filteredValues); in insert()
236 copyInteger(BluetoothShare.VISIBILITY, values, filteredValues); in insert()
237 copyLong(BluetoothShare.TOTAL_BYTES, values, filteredValues); in insert()
239 filteredValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_VISIBLE); in insert()
253 filteredValues.put(BluetoothShare.USER_CONFIRMATION, con); in insert()
254 filteredValues.put(BluetoothShare.DIRECTION, dir); in insert()
[all …]