OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
527
ContentValues
filteredValues
= new ContentValues();
528
copyString(Downloads.Impl.COLUMN_URI, values,
filteredValues
);
529
copyString(Downloads.Impl.COLUMN_APP_DATA, values,
filteredValues
);
530
copyBoolean(Downloads.Impl.COLUMN_NO_INTEGRITY, values,
filteredValues
);
531
copyString(Downloads.Impl.COLUMN_FILE_NAME_HINT, values,
filteredValues
);
532
copyString(Downloads.Impl.COLUMN_MIME_TYPE, values,
filteredValues
);
533
copyBoolean(Downloads.Impl.COLUMN_IS_PUBLIC_API, values,
filteredValues
);
579
filteredValues
.put(Downloads.Impl.COLUMN_DESTINATION, dest);
586
filteredValues
.put(Downloads.Impl.COLUMN_VISIBILITY,
589
filteredValues
.put(Downloads.Impl.COLUMN_VISIBILITY
[
all
...]
Completed in 177 milliseconds