Searched refs:update (Results 176 - 200 of 226) sorted by relevance

12345678910

/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabasePerformanceTests.java904 * 1000 update's with an index with where clause
942 mDatabase.update("t1", mValues[i], where[i], null);
948 * 1000 update's without an index with where clause
984 mDatabase.update("t1", mValues[i], where[i], null);
H A DNewDatabasePerformanceTests.java788 * 1000 update's with an index with where clause
825 mDatabase.update("t1", mValues[i], where[i], null);
831 * 1000 update's without an index with where clause
866 mDatabase.update("t1", mValues[i], where[i], null);
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java296 // If rotation is transient, don't update the tile.
524 tile.update(x, y, level);
727 public void update(int x, int y, int level) { method in class:TiledImageRenderer.Tile
/frameworks/ex/variablespeed/jni/
H A Dvariablespeed.cc132 bool AudioEngine::CompareAndSetEngine(AudioEngine* expect, AudioEngine* update) { argument
136 audioEngine_ = update;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java489 log("update phone state, old=" + oldState + " new="+ mState);
552 mPendingMO.update(dc);
652 changed = conn.update(dc);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCallTracker.java477 mPendingMO.update(dc);
555 changed = conn.update(dc);
/frameworks/base/core/java/android/provider/
H A DContactsContract.java118 * An optional URI parameter for insert, update, or delete queries
562 resolver.update(Directory.CONTENT_URI, contentValues, null, null);
927 * Contact's latest status update.
1342 * <td>Contact's latest status update. Automatically computed as the latest
1564 resolver.update(uri, values, null, null);
2077 * <dd>The profile Contact has the same update restrictions as Contacts in general,
2276 * inserting a raw contact and leave it out when doing an update.
2473 * it is much better for a sync adapter to update a raw contact rather than to delete and
2703 * Aggregation mode: aggregate immediately after insert or update operation(s) are complete.
2717 * Changes to the raw contact will update th
[all...]
H A DMediaStore.java1662 return res.update(uri, values, null, null) != 0;
/frameworks/base/media/java/android/media/
H A DMediaScanner.java815 // update database
998 mMediaProvider.update(mPackageName, result, values, null, null);
1485 // no need to use the media scanner, but we need to update last modified and file size
1491 mMediaProvider.update(mPackageName, Files.getMtpObjectsUri(volumeName), values,
1821 mMediaProvider.update(mPackageName, uri, values, null, null);
H A DClosedCaptionRenderer.java1173 mClosedCaptionLayout.update(styledTexts);
1398 void update(SpannableStringBuilder[] textBuffer) { method in class:ClosedCaptionWidget.CCLayout
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSMSDispatcher.java1344 // If we wrote this message in writeSentMessage, update it now
1347 SqliteWrapper.update(context, context.getContentResolver(),
1368 if (SqliteWrapper.update(context, context.getContentResolver(), mMessageUri, values,
1418 // we have to update the column after we persist it into SENT box.
1424 resolver.update(uri, updateValues, null/*where*/, null/*selectionArgs*/);
1436 * Persist or update an SMS depending on if we send a new message or a stored message
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java42 * can insert, update, and remove records in a content provider. For example,
55 * adb shell content update --uri content://settings/secure --bind value:s:newer_value
89 + "usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>]\n"
94 + " adb shell content update --uri content://settings/secure --bind"
131 private static final String ARGUMENT_UPDATE = "update";
597 provider.update(null, mUri, mContentValues, mWhere, null);
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_CameraMetadata.cpp126 return metadata->update(tag, dataPtr, dataCount); \
349 "Internal error while trying to update metadata");
352 "Unknown error (%d) while trying to update "
H A Dandroid_view_SurfaceControl.cpp140 res = screenshot->update(displayToken, sourceCrop, width, height,
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java546 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:ContentProviderOperationTest.TestContentProvider
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCardApplication.java118 void update (IccCardApplicationStatus as, Context c, CommandsInterface ci) { method in class:UiccCardApplication
125 if (DBG) log(mAppType + " update. New " + as);
/frameworks/base/core/java/android/content/
H A DContentResolver.java1315 * If the content provider supports transactions the update will be atomic.
1325 public final int update(Uri uri, ContentValues values, String where, method in class:ContentResolver
1333 int rowsUpdated = provider.update(mPackageName, uri, values, where, selectionArgs);
1335 maybeLogUpdateToEventLog(durationMillis, uri, "update", where);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java362 // already handled. (we get a few update events
1055 // nothing changed, so no need to update the database
1187 public int update(Uri url, ContentValues initialValues, String where, String[] whereArgs) { method in class:SettingsProvider
1188 // NOTE: update() is never called by the front-end Settings API, and updates that
1190 // intended effect (the update will be invisible to the rest of the system).
1194 if (LOCAL_LOGV) Slog.v(TAG, "update() for user " + callingUser);
1213 int count = db.update(args.table, initialValues, args.where, args.args);
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java203 * Called when the call update is failed.
207 * @param reasonInfo detailed reason of the call update failure
214 * Called when the call update is received from the remote user.
381 // List of update operation for IMS call control
402 // It contains the exclusive call update request. Refer to UPDATE_*.
418 // to the call update. After the application's action (accept/reject) is done,
663 * Checks if the call has a pending update operation.
665 * @return true if the call has a pending update operation
952 // Other call update received
984 // Other call update receive
1204 public void update(int callType, ImsStreamMediaProfile mediaProfile) throws ImsException { method in class:ImsCall
[all...]
/frameworks/base/core/java/android/widget/
H A DEditor.java617 mErrorPopup.update(mTextView, getErrorX(), getErrorY(),
1096 // so turn this into a full update.
1401 // only needs to update its drawing location.
2289 mPopupWindow.update(positionX, positionY, -1, -1);
3352 // Will update controllers' state, hiding them and stopping selection mode if needed
3398 mContainer.update(positionX, positionY, -1, -1);
4128 public void update(int x, int y, int w, int h, boolean force) { method in class:Editor.ErrorPopup
4129 super.update(x, y, w, h, force);
H A DListPopupWindow.java578 // The call to PopupWindow's update method below can accept -1 for any
579 // value you do not want to update.
588 // The call to PopupWindow's update method below can accept -1 for any
589 // value you do not want to update.
609 mPopup.update(getAnchorView(), mDropDownHorizontalOffset,
1651 // Ordering is essential. First, update the container's pressed state.
1683 // which will also update the selector state.
/frameworks/av/camera/tests/
H A DProCameraTests.cpp498 request.update(tag, streamIds, count);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java166 * or updating the current row. Thus the insert or update always occurs.
208 public static final int OPEN_READWRITE = 0x00000000; // update native code if changing
214 public static final int OPEN_READONLY = 0x00000001; // update native code if changing
216 private static final int OPEN_READ_MASK = 0x00000001; // update native code if changing
226 public static final int NO_LOCALIZED_COLLATORS = 0x00000010; // update native code if changing
232 public static final int CREATE_IF_NECESSARY = 0x10000000; // update native code if changing
926 * Mark this table as syncable. When an update occurs in this table the
940 * table. When an update occurs in this table the _sync_dirty field of the
944 * @param table an update on this table will trigger a sync time removal
1511 * @param table the table to update i
1521 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) { method in class:SQLiteDatabase
[all...]
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java785 // finally update database
790 // note - we are relying on a special case in MediaProvider.update() to update
792 updated = mMediaProvider.update(mPackageName, mObjectsUri, values, ID_WHERE, whereArgs);
794 Log.e(TAG, "RemoteException in mMediaProvider.update", e);
797 Log.e(TAG, "Unable to update path for " + path + " to " + newPath);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPageAdapter.java202 public void update(PageRange[] writtenPages, PageRange[] selectedPages, method in class:PageAdapter
446 // Now update the empty state drawable, as it depends on the page

Completed in 678 milliseconds

12345678910