HomeSort by relevance Sort by last modified time
    Searched refs:filteredValues (Results 1 - 2 of 2) sorted by null

  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 506 ContentValues filteredValues = new ContentValues();
507 copyString(Downloads.Impl.COLUMN_URI, values, filteredValues);
508 copyString(Downloads.Impl.COLUMN_APP_DATA, values, filteredValues);
509 copyBoolean(Downloads.Impl.COLUMN_NO_INTEGRITY, values, filteredValues);
510 copyString(Downloads.Impl.COLUMN_FILE_NAME_HINT, values, filteredValues);
511 copyString(Downloads.Impl.COLUMN_MIME_TYPE, values, filteredValues);
512 copyBoolean(Downloads.Impl.COLUMN_IS_PUBLIC_API, values, filteredValues);
550 filteredValues.put(Downloads.Impl.COLUMN_DESTINATION, dest);
557 filteredValues.put(Downloads.Impl.COLUMN_VISIBILITY,
560 filteredValues.put(Downloads.Impl.COLUMN_VISIBILITY
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppProvider.java 240 ContentValues filteredValues = new ContentValues();
242 copyString(BluetoothShare.URI, values, filteredValues);
243 copyString(BluetoothShare.FILENAME_HINT, values, filteredValues);
244 copyString(BluetoothShare.MIMETYPE, values, filteredValues);
245 copyString(BluetoothShare.DESTINATION, values, filteredValues);
247 copyInteger(BluetoothShare.VISIBILITY, values, filteredValues);
248 copyInteger(BluetoothShare.TOTAL_BYTES, values, filteredValues);
251 filteredValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_VISIBLE);
266 filteredValues.put(BluetoothShare.USER_CONFIRMATION, con);
267 filteredValues.put(BluetoothShare.DIRECTION, dir)
    [all...]

Completed in 468 milliseconds