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 324 ContentValues updateValues = new ContentValues();
327 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName);
328 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength);
329 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype);
331 mContext1.getContentResolver().update(contentUri, updateValues, null, null);
342 ContentValues updateValues;
387 updateValues = new ContentValues();
388 updateValues.put(BluetoothShare.CURRENT_BYTES, 0);
389 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING);
390 mContext1.getContentResolver().update(contentUri, updateValues, null, null)
    [all...]
BluetoothOppTransfer.java 278 ContentValues updateValues = new ContentValues();
279 updateValues
281 mContext.getContentResolver().update(contentUri, updateValues, null, null);
314 ContentValues updateValues = new ContentValues();
315 updateValues.put(BluetoothShare.STATUS, info.mStatus);
322 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName);
323 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength);
324 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype);
331 mContext.getContentResolver().update(contentUri, updateValues, null, null);
684 ContentValues updateValues = new ContentValues()
    [all...]
Constants.java 277 ContentValues updateValues = new ContentValues();
278 updateValues.put(BluetoothShare.STATUS, status);
279 context.getContentResolver().update(contentUri, updateValues, null, null);
BluetoothOppObexServerSession.java 366 ContentValues updateValues = new ContentValues();
368 updateValues.put(BluetoothShare._DATA, mFileInfo.mFileName);
369 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING);
370 mContext.getContentResolver().update(contentUri, updateValues, null, null);
448 ContentValues updateValues = new ContentValues();
449 updateValues.put(BluetoothShare._DATA, fileInfo.mFileName);
450 mContext.getContentResolver().update(contentUri, updateValues, null, null);
484 ContentValues updateValues = new ContentValues();
485 updateValues.put(BluetoothShare.CURRENT_BYTES, position);
486 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 240 ContentValues updateValues = new ContentValues();
241 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
242 context.getContentResolver().update(uri, updateValues, null, null);
BluetoothOppService.java 238 ContentValues updateValues = new ContentValues();
240 updateValues.put(Constants.MEDIA_SCANNED, Constants.MEDIA_SCANNED_SCANNED_OK);
241 updateValues.put(BluetoothShare.URI, msg.obj.toString()); // update
242 updateValues.put(BluetoothShare.MIMETYPE, getContentResolver().getType(
244 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 714 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 415 milliseconds