Searched refs:filteredValues (Results 1 – 2 of 2) sorted by relevance
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
H A D | BluetoothOppProvider.java | 209 ContentValues filteredValues = new ContentValues(); in insert() local 211 copyString(BluetoothShare.URI, values, filteredValues); in insert() 213 copyString(BluetoothShare.MIMETYPE, values, filteredValues); in insert() 214 copyString(BluetoothShare.DESTINATION, values, filteredValues); in insert() 216 copyInteger(BluetoothShare.VISIBILITY, values, filteredValues); in insert() 217 copyLong(BluetoothShare.TOTAL_BYTES, values, filteredValues); in insert() 233 filteredValues.put(BluetoothShare.USER_CONFIRMATION, con); in insert() 234 filteredValues.put(BluetoothShare.DIRECTION, dir); in insert() 237 filteredValues.put(Constants.MEDIA_SCANNED, 0); in insert() 243 filteredValues.put(BluetoothShare.TIMESTAMP, ts); in insert() [all …]
|
/aosp12/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
H A D | DownloadProvider.java | 706 ContentValues filteredValues = new ContentValues(); in insert() local 785 filteredValues.put(Downloads.Impl.COLUMN_TOTAL_BYTES, in insert() 828 filteredValues.put(Constants.UID, Binder.getCallingUid()); in insert() 830 copyInteger(Constants.UID, values, filteredValues); in insert() 849 filteredValues.put(COLUMN_MEDIA_SCANNED, in insert() 887 + filteredValues.getAsInteger(Constants.UID)); in insert() 894 long rowID = db.insert(DB_TABLE, null, filteredValues); in insert() 1370 ContentValues filteredValues; in update() local 1372 filteredValues = new ContentValues(); in update() 1387 filteredValues = values; in update() [all …]
|