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

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppProvider.java 234 ContentValues filteredValues = new ContentValues();
236 copyString(BluetoothShare.URI, values, filteredValues);
237 copyString(BluetoothShare.FILENAME_HINT, values, filteredValues);
238 copyString(BluetoothShare.MIMETYPE, values, filteredValues);
239 copyString(BluetoothShare.DESTINATION, values, filteredValues);
241 copyInteger(BluetoothShare.VISIBILITY, values, filteredValues);
242 copyLong(BluetoothShare.TOTAL_BYTES, values, filteredValues);
244 filteredValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_VISIBLE);
259 filteredValues.put(BluetoothShare.USER_CONFIRMATION, con);
260 filteredValues.put(BluetoothShare.DIRECTION, dir)
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 540 ContentValues filteredValues = new ContentValues();
541 copyString(Downloads.Impl.COLUMN_URI, values, filteredValues);
542 copyString(Downloads.Impl.COLUMN_APP_DATA, values, filteredValues);
543 copyBoolean(Downloads.Impl.COLUMN_NO_INTEGRITY, values, filteredValues);
544 copyString(Downloads.Impl.COLUMN_FILE_NAME_HINT, values, filteredValues);
545 copyString(Downloads.Impl.COLUMN_MIME_TYPE, values, filteredValues);
546 copyBoolean(Downloads.Impl.COLUMN_IS_PUBLIC_API, values, filteredValues);
592 filteredValues.put(Downloads.Impl.COLUMN_DESTINATION, dest);
599 filteredValues.put(Downloads.Impl.COLUMN_VISIBILITY,
602 filteredValues.put(Downloads.Impl.COLUMN_VISIBILITY
    [all...]

Completed in 79 milliseconds