/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppObexClientSession.java | 312 ContentValues updateValues = new ContentValues(); 315 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName); 316 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength); 317 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype); 319 mContext1.getContentResolver().update(contentUri, updateValues, null, null); 330 ContentValues updateValues; 375 updateValues = new ContentValues(); 376 updateValues.put(BluetoothShare.CURRENT_BYTES, 0); 377 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING); 378 mContext1.getContentResolver().update(contentUri, updateValues, null, null) [all...] |
TestActivity.java | 178 * ContentValues updateValues = new ContentValues(); 179 * updateValues.put(BluetoothShare.TOTAL_BYTES, 120000); 180 * getContentResolver().update(contentUri1,updateValues,null,null); 193 * updateValues.put(BluetoothShare.CURRENT_BYTES, currentByte); 194 * getContentResolver().update(contentUri1,updateValues,null,null); } } 289 ContentValues updateValues = new ContentValues(); 291 // updateValues.put(BluetoothShare.TOTAL_BYTES, "120000"); 292 // updateValues.put(BluetoothShare.CURRENT_BYTES, mCurrentByte); 293 // updateValues.put(BluetoothShare.VISIBILITY, 295 updateValues.put(BluetoothShare.USER_CONFIRMATION [all...] |
BluetoothOppObexServerSession.java | 352 ContentValues updateValues = new ContentValues(); 354 updateValues.put(BluetoothShare._DATA, mFileInfo.mFileName); 355 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING); 356 mContext.getContentResolver().update(contentUri, updateValues, null, null); 434 ContentValues updateValues = new ContentValues(); 435 updateValues.put(BluetoothShare._DATA, fileInfo.mFileName); 436 mContext.getContentResolver().update(contentUri, updateValues, null, null); 470 ContentValues updateValues = new ContentValues(); 471 updateValues.put(BluetoothShare.CURRENT_BYTES, position); 472 mContext.getContentResolver().update(contentUri, updateValues, null, null) [all...] |
BluetoothOppTransfer.java | 302 ContentValues updateValues = new ContentValues(); 303 updateValues 305 mContext.getContentResolver().update(contentUri, updateValues, null, null); 334 ContentValues updateValues = new ContentValues(); 335 updateValues.put(BluetoothShare.STATUS, info.mStatus); 342 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName); 343 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength); 344 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype); 351 mContext.getContentResolver().update(contentUri, updateValues, null, null); 759 ContentValues updateValues = new ContentValues() [all...] |
Constants.java | 196 ContentValues updateValues = new ContentValues(); 197 updateValues.put(BluetoothShare.STATUS, status); 198 context.getContentResolver().update(contentUri, updateValues, null, null);
|
BluetoothOppReceiveFileInfo.java | 169 ContentValues updateValues = new ContentValues(); 170 updateValues.put(BluetoothShare.FILENAME_HINT, displayName); 171 context.getContentResolver().update(contentUri, updateValues, null, null);
|
BluetoothOppReceiver.java | 216 ContentValues updateValues = new ContentValues(); 217 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN); 218 context.getContentResolver().update(BluetoothShare.CONTENT_URI, updateValues,
|
BluetoothOppUtility.java | 230 ContentValues updateValues = new ContentValues(); 231 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN); 232 context.getContentResolver().update(uri, updateValues, null, null);
|
BluetoothOppService.java | 227 ContentValues updateValues = new ContentValues(); 229 updateValues.put(Constants.MEDIA_SCANNED, Constants.MEDIA_SCANNED_SCANNED_OK); 230 updateValues.put(BluetoothShare.URI, msg.obj.toString()); // update 231 updateValues.put(BluetoothShare.MIMETYPE, getContentResolver().getType( 233 getContentResolver().update(contentUri, updateValues, null, null); [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
CalendarTest.java | [all...] |
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
ContactsSyncAdapter.java | [all...] |
/packages/apps/Calendar/src/com/android/calendar/event/ |
EditEventHelper.java | 679 ContentValues updateValues = new ContentValues(); [all...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
CalendarProvider2.java | [all...] |
/packages/apps/Email/src/com/android/email/ |
MessagingController.java | [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactsProvider2.java | [all...] |