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);
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);
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...]
BluetoothOppReceiveFileInfo.java 169 ContentValues updateValues = new ContentValues();
170 updateValues.put(BluetoothShare.FILENAME_HINT, displayName);
171 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 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/Calendar/src/com/android/calendar/event/
EditEventHelper.java 682 ContentValues updateValues = new ContentValues();
    [all...]
  /packages/apps/Exchange/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 690 milliseconds