Searched refs:update (Results 276 - 300 of 406) sorted by relevance

<<11121314151617

/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DDatabaseWrapper.java337 public int update(final String table, final ContentValues values, method in class:DatabaseWrapper
346 count = mDatabase.update(table, values, selection, selectionArgs);
348 LogUtil.e(TAG, "Database full, unable to update", ex);
352 printTiming(t1, String.format(Locale.US, "update %s with %s ==> %d",
/packages/apps/Messaging/src/com/android/messaging/sms/
H A DBugleApnSettingsLoader.java254 database.update(ApnDatabase.APN_TABLE, CURRENT_NULL_VALUE,
257 database.update(ApnDatabase.APN_TABLE, CURRENT_SET_VALUE, SET_UPDATE_SELECTION,
H A DApnDatabase.java253 db.update(APN_TABLE, row, ID_SELECTION, new String[]{cursor.getString(0)});
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DActionBatch.java71 may update other attributes like description or remote filename.
79 * A piece of update.
396 Log.e(TAG, "Trying to update data about a non-existing word list. Bailing out.");
411 db.update(MetadataDbHelper.METADATA_TABLE_NAME, values,
451 Log.e(TAG, "Trying to update the metadata of a non-existing wordlist. Cancelling.");
472 db.update(MetadataDbHelper.METADATA_TABLE_NAME, values,
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DBaseContactsProvider2Test.java187 return mResolver.update(uri, values, null, null);
535 mResolver.update(ContentUris.withAppendedId(
544 assertEquals(1, mResolver.update(AggregationExceptions.CONTENT_URI, values, null, null));
553 assertEquals(1, mResolver.update(ContentUris.withAppendedId(
857 mResolver.update(uri, values, null, null);
863 mResolver.update(uri, values, null, null);
874 mResolver.update(contentUri, values, null, null);
885 mResolver.update(contentUri, values, null, null);
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapSettingsAdapter.java323 mResolver.update(uri, values, null ,null);
/packages/apps/Calendar/src/com/android/calendar/
H A DAsyncQueryServiceHelper.java310 args.result = resolver.update(args.uri, args.values, args.selection,
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DMissedCallNotifier.java197 mContext.getContentResolver().update(Calls.CONTENT_URI, values,
201 Log.w(TAG, "ContactsProvider update command failed", e);
/packages/apps/Dialer/src/com/android/dialer/filterednumber/
H A DFilteredNumbersUtil.java208 context.getContentResolver().update(
/packages/apps/Dialer/src/com/android/dialer/voicemail/
H A DVoicemailAsyncTaskUtil.java73 * @param success whether the update was successful or not
146 return mResolver.update(voicemailUri, values, null, null) > 0;
/packages/apps/Dialer/tests/src/com/android/dialer/voicemail/
H A DVoicemailStatusHelperImplTest.java237 // If insertion fails then try update as the record might already exist.
248 return getContentResolver().update(
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DAttachmentUtilities.java462 context.getContentResolver().update(uri, cv, null, null);
H A DSSLUtils.java128 mContext.getContentResolver().update(
/packages/apps/Email/provider_src/com/android/email/provider/
H A DAttachmentProvider.java311 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:AttachmentProvider
H A DEmailConversationCursor.java233 resolver.update(uri, contentValues, where, selectionArgs);
H A DEmailProvider.java177 * {@link android.content.Intent} and update accordingly. However, this can be very broad and
192 /** Appended to the notification URI for update operations */
193 private static final String NOTIFICATION_OP_UPDATE = "update";
454 // update mailbox set parentKey = (select _id from mailbox as b where
457 db.execSQL("update " + Mailbox.TABLE_NAME + " set " + MailboxColumns.PARENT_KEY + "="
468 // update mailbox set parentKey = -1 where parentKey=0 or parentKey is null;
469 db.execSQL("update " + Mailbox.TABLE_NAME + " set " + MailboxColumns.PARENT_KEY
521 mDatabase.execSQL("update " + Mailbox.TABLE_NAME + " set " + MailboxColumns.UI_SYNC_STATUS +
535 // In the 1:1000000000 chance that the user gets an app update just as his database becomes
1635 // Copy host auth's and update foreig
1914 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:EmailProvider
[all...]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DFileCache.java185 mDbHelper.getWritableDatabase().update(TABLE_NAME,
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DSnackBarManager.java166 // update while the snackbar is showing
170 mPopupWindow.update(anchorView, 0, getRelativeOffset(snackBar),
/packages/apps/Messaging/tests/src/com/android/messaging/util/
H A DContactUtilTest.java112 getContext().getContentResolver().update(Contacts.CONTENT_URI, values,
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
H A DDictionaryBackupAgent.java137 checkSummer.update(data);
/packages/apps/Email/provider_src/com/android/email/service/
H A DAttachmentService.java551 attachment.update(AttachmentService.this, values);
799 // TODO: If the request already existed, we'll update the priority (so that the time is
818 att.update(this, cv);
830 att.update(this, cv);
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupIncomingFragment.java504 * Note, we update account here (as well as the account.mHostAuthRecv) because we edit
510 account.update(context, account.toContentValues());
514 cred.update(context, cred.toContentValues());
520 account.mHostAuthRecv.update(context, account.mHostAuthRecv.toContentValues());
/packages/apps/Settings/src/com/android/settings/wfd/
H A DWifiDisplaySettings.java170 update(CHANGE_ALL);
229 private void update(int changes) { method in class:WifiDisplaySettings
598 update(changes);
/packages/apps/TV/src/com/android/tv/guide/
H A DProgramTableAdapter.java143 update();
148 update();
152 private void update() { method in class:ProgramTableAdapter
153 if (DEBUG) Log.d(TAG, "update " + mProgramManager.getChannelCount() + " channels");
194 if (DEBUG) Log.d(TAG, "update(" + channelIndex + ", " + pos + ")");
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
H A DSmsProvider.java658 // Don't update threads unless something changed.
693 count = db.update(TABLE_RAW, cv, where, whereArgs);
751 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { method in class:SmsProvider
818 Log.w(TAG, callerPkg + " tries to update CREATOR");
823 count = db.update(table, values, where, whereArgs);
827 Log.d(TAG, "update " + url + " succeeded");

Completed in 552 milliseconds

<<11121314151617