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

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 322 ContentValues updateValues = new ContentValues();
325 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName);
326 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength);
327 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype);
329 mContext1.getContentResolver().update(contentUri, updateValues, null, null);
340 ContentValues updateValues;
385 updateValues = new ContentValues();
386 updateValues.put(BluetoothShare.CURRENT_BYTES, 0);
387 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING);
388 mContext1.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);
762 ContentValues updateValues = new ContentValues()
    [all...]
Constants.java 266 ContentValues updateValues = new ContentValues();
267 updateValues.put(BluetoothShare.STATUS, status);
268 context.getContentResolver().update(contentUri, updateValues, null, null);
BluetoothOppObexServerSession.java 365 ContentValues updateValues = new ContentValues();
367 updateValues.put(BluetoothShare._DATA, mFileInfo.mFileName);
368 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING);
369 mContext.getContentResolver().update(contentUri, updateValues, null, null);
447 ContentValues updateValues = new ContentValues();
448 updateValues.put(BluetoothShare._DATA, fileInfo.mFileName);
449 mContext.getContentResolver().update(contentUri, updateValues, null, null);
483 ContentValues updateValues = new ContentValues();
484 updateValues.put(BluetoothShare.CURRENT_BYTES, position);
485 mContext.getContentResolver().update(contentUri, updateValues, null, null)
    [all...]
BluetoothOppReceiveFileInfo.java 174 ContentValues updateValues = new ContentValues();
175 updateValues.put(BluetoothShare.FILENAME_HINT, displayName);
176 context.getContentResolver().update(contentUri, updateValues, null, null);
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...]
BluetoothOppReceiver.java 217 ContentValues updateValues = new ContentValues();
218 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
219 context.getContentResolver().update(BluetoothShare.CONTENT_URI, updateValues,
BluetoothOppUtility.java 235 ContentValues updateValues = new ContentValues();
236 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
237 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/Calendar/src/com/android/calendar/event/
EditEventHelper.java 676 ContentValues updateValues = new ContentValues();
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
ContactsSyncAdapter.java     [all...]
  /packages/apps/Email/src/com/android/email/
MessagingController.java     [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java     [all...]

Completed in 573 milliseconds