HomeSort by relevance Sort by last modified time
    Searched refs:updateValues (Results 1 - 20 of 20) 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);
343 ContentValues updateValues;
388 updateValues = new ContentValues();
389 updateValues.put(BluetoothShare.CURRENT_BYTES, 0);
390 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING);
391 mContext1.getContentResolver().update(contentUri, updateValues, null, null)
    [all...]
BluetoothOppTransfer.java 280 ContentValues updateValues = new ContentValues();
281 updateValues
283 mContext.getContentResolver().update(contentUri, updateValues, null, null);
316 ContentValues updateValues = new ContentValues();
317 updateValues.put(BluetoothShare.STATUS, info.mStatus);
324 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName);
325 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength);
326 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype);
333 mContext.getContentResolver().update(contentUri, updateValues, null, null);
686 ContentValues updateValues = new ContentValues()
    [all...]
Constants.java 279 ContentValues updateValues = new ContentValues();
280 updateValues.put(BluetoothShare.STATUS, status);
281 context.getContentResolver().update(contentUri, updateValues, null, null);
BluetoothOppObexServerSession.java 370 ContentValues updateValues = new ContentValues();
372 updateValues.put(BluetoothShare._DATA, mFileInfo.mFileName);
373 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING);
374 mContext.getContentResolver().update(contentUri, updateValues, null, null);
452 ContentValues updateValues = new ContentValues();
453 updateValues.put(BluetoothShare._DATA, fileInfo.mFileName);
454 mContext.getContentResolver().update(contentUri, updateValues, null, null);
488 ContentValues updateValues = new ContentValues();
489 updateValues.put(BluetoothShare.CURRENT_BYTES, position);
490 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 250 ContentValues updateValues = new ContentValues();
252 updateValues.put(Constants.MEDIA_SCANNED, Constants.MEDIA_SCANNED_SCANNED_OK);
253 updateValues.put(BluetoothShare.URI, msg.obj.toString()); // update
254 updateValues.put(BluetoothShare.MIMETYPE, getContentResolver().getType(
256 getContentResolver().update(contentUri, updateValues, null, null);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorGrad.java 181 mAdapters[i].updateValues(rep);
199 updateValues(rep);
204 public void updateValues(FilterGradRepresentation rep) {
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java     [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSyncContacts.java 297 final ContentValues updateValues = new ContentValues();
303 updateValues.put(GroupMembership.GROUP_ROW_ID, id);
305 cr.update(ContactsContract.Data.CONTENT_URI, updateValues,
312 updateValues.clear();
313 updateValues.put(Groups.DIRTY, 0);
315 updateValues, null, null);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationCursor.java     [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 714 ContentValues updateValues = new ContentValues();
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
ImapService.java     [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SMSDispatcher.java     [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AbstractActivityController.java     [all...]

Completed in 477 milliseconds