Searched refs:filteredValues (Results 1 – 2 of 2) sorted by relevance
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | DownloadProvider.java | 527 ContentValues filteredValues = new ContentValues(); in insert() local 528 copyString(Downloads.Impl.COLUMN_URI, values, filteredValues); in insert() 529 copyString(Downloads.Impl.COLUMN_APP_DATA, values, filteredValues); in insert() 530 copyBoolean(Downloads.Impl.COLUMN_NO_INTEGRITY, values, filteredValues); in insert() 531 copyString(Downloads.Impl.COLUMN_FILE_NAME_HINT, values, filteredValues); in insert() 532 copyString(Downloads.Impl.COLUMN_MIME_TYPE, values, filteredValues); in insert() 533 copyBoolean(Downloads.Impl.COLUMN_IS_PUBLIC_API, values, filteredValues); in insert() 579 filteredValues.put(Downloads.Impl.COLUMN_DESTINATION, dest); in insert() 586 filteredValues.put(Downloads.Impl.COLUMN_VISIBILITY, in insert() 589 filteredValues.put(Downloads.Impl.COLUMN_VISIBILITY, in insert() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
D | BluetoothOppProvider.java | 234 ContentValues filteredValues = new ContentValues(); in insert() local 236 copyString(BluetoothShare.URI, values, filteredValues); in insert() 237 copyString(BluetoothShare.FILENAME_HINT, values, filteredValues); in insert() 238 copyString(BluetoothShare.MIMETYPE, values, filteredValues); in insert() 239 copyString(BluetoothShare.DESTINATION, values, filteredValues); in insert() 241 copyInteger(BluetoothShare.VISIBILITY, values, filteredValues); in insert() 242 copyLong(BluetoothShare.TOTAL_BYTES, values, filteredValues); in insert() 244 filteredValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_VISIBLE); in insert() 259 filteredValues.put(BluetoothShare.USER_CONFIRMATION, con); in insert() 260 filteredValues.put(BluetoothShare.DIRECTION, dir); in insert() [all …]
|