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

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppReceiveFileInfo.java 169 ContentValues updateValues = new ContentValues();
170 updateValues.put(BluetoothShare.FILENAME_HINT, displayName);
171 context.getContentResolver().update(contentUri, updateValues, null, null);
BluetoothOppReceiver.java 211 ContentValues updateValues = new ContentValues();
212 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
213 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);
Constants.java 190 ContentValues updateValues = new ContentValues();
191 updateValues.put(BluetoothShare.STATUS, status);
192 context.getContentResolver().update(contentUri, updateValues, null, null);
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...]
BluetoothOppObexServerSession.java 349 ContentValues updateValues = new ContentValues();
351 updateValues.put(BluetoothShare._DATA, mFileInfo.mFileName);
352 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING);
353 mContext.getContentResolver().update(contentUri, updateValues, null, null);
431 ContentValues updateValues = new ContentValues();
432 updateValues.put(BluetoothShare._DATA, fileInfo.mFileName);
433 mContext.getContentResolver().update(contentUri, updateValues, null, null);
467 ContentValues updateValues = new ContentValues();
468 updateValues.put(BluetoothShare.CURRENT_BYTES, position);
469 mContext.getContentResolver().update(contentUri, updateValues, null, null)
    [all...]
BluetoothOppTransfer.java 299 ContentValues updateValues = new ContentValues();
300 updateValues
302 mContext.getContentResolver().update(contentUri, updateValues, null, null);
331 ContentValues updateValues = new ContentValues();
332 updateValues.put(BluetoothShare.STATUS, info.mStatus);
339 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName);
340 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength);
341 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype);
348 mContext.getContentResolver().update(contentUri, updateValues, null, null);
741 ContentValues updateValues = new ContentValues()
    [all...]
  /packages/apps/Email/src/com/android/email/
MessagingController.java 679 ContentValues updateValues = new ContentValues();
680 updateValues.put(EmailContent.Message.FLAG_READ, remoteSeen);
681 updateValues.put(EmailContent.Message.FLAG_FAVORITE, remoteFlagged);
682 resolver.update(uri, updateValues, null, null);
715 // ContentValues updateValues = new ContentValues();
716 // updateValues.put(EmailContent.Mailbox.UNREAD_COUNT, remoteUnreadMessageCount);
717 // resolver.update(uri, updateValues, null, null);
    [all...]

Completed in 108 milliseconds