Searched defs:update (Results 1 - 25 of 124) sorted by path

12345

/frameworks/av/camera/
H A DCameraMetadata.cpp188 status_t CameraMetadata::update(uint32_t tag, function in class:android::CameraMetadata
201 status_t CameraMetadata::update(uint32_t tag, function in class:android::CameraMetadata
214 status_t CameraMetadata::update(uint32_t tag, function in class:android::CameraMetadata
227 status_t CameraMetadata::update(uint32_t tag, function in class:android::CameraMetadata
240 status_t CameraMetadata::update(uint32_t tag, function in class:android::CameraMetadata
253 status_t CameraMetadata::update(uint32_t tag, function in class:android::CameraMetadata
266 status_t CameraMetadata::update(uint32_t tag, function in class:android::CameraMetadata
310 ALOGE("%s: Unable to update metadata entry %s.%s (%x): %s (%d)",
319 "%s: Failed to validate metadata structure after update %p",
/frameworks/av/include/camera/
H A DCameraMetadata.h126 status_t update(uint32_t tag,
128 status_t update(uint32_t tag,
130 status_t update(uint32_t tag,
132 status_t update(uint32_t tag,
134 status_t update(uint32_t tag,
136 status_t update(uint32_t tag,
138 status_t update(uint32_t tag,
142 status_t update(uint32_t tag, Vector<T> data) { function in class:android::CameraMetadata
143 return update(tag, data.array(), data.size());
219 * Base update entr
[all...]
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DDrcPresModeWrap.cpp152 CDrcPresModeWrapper::update() function in class:CDrcPresModeWrapper
318 // update the decoder
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dwb_syn_filt.cpp55 int16 update, (i) : 0=no update, 1=update of memory.
132 int16 update, /* (i) : 0=no update, 1=update of memory. */
213 if (update)
125 wb_syn_filt( int16 a[], int16 m, int16 x[], int16 y[], int16 lg, int16 mem[], int16 update, int16 y_buf[] ) argument
/frameworks/base/core/java/android/app/
H A DActivityOptions.java714 public void update(ActivityOptions otherOptions) { method in class:ActivityOptions
851 result.update(this);
/frameworks/base/core/java/android/content/
H A DContentProvider.java70 * <li>{@link #update} which updates existing data in the content provider</li>
76 * {@link #update}) may be called from many threads at once, and must be thread-safe.
319 public int update(String callingPkg, Uri uri, ContentValues values, String selection, method in class:ContentProvider.Transport
328 return ContentProvider.this.update(uri, values, selection, selectionArgs);
1118 * Implement this to handle requests to update one or more rows.
1119 * The implementation should update all rows matching the selection
1128 * is an update request for a specific record.
1129 * @param values A set of column_name/value pairs to update in the database.
1131 * @param selection An optional filter to match rows to update.
1134 public abstract int update(Ur method in class:ContentProvider
[all...]
H A DContentProviderClient.java246 /** See {@link ContentProvider#update ContentProvider.update} */
247 public int update(Uri url, ContentValues values, String selection, method in class:ContentProviderClient
251 return mContentProvider.update(mPackageName, url, values, selection, selectionArgs);
H A DContentProviderNative.java222 int count = update(callingPkg, url, values, selection, selectionArgs);
553 public int update(String callingPkg, Uri url, ContentValues values, String selection, method in class:ContentProviderProxy
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);
H A DIContentProvider.java47 public int update(String callingPkg, Uri url, ContentValues values, String selection, method in interface:IContentProvider
H A DSearchRecentSuggestionsProvider.java53 * <li>In order for the Content Resolver to do this, you must update your searchable activity's
89 // Table of database versions. Don't forget to update!
393 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:SearchRecentSuggestionsProvider
/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...]
H A DSqliteWrapper.java76 public static int update(Context context, ContentResolver resolver, Uri uri, method in class:SqliteWrapper
79 return resolver.update(uri, values, where, selectionArgs);
81 Log.e(TAG, "Catch a SQLiteException when update: ", e);
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraDeviceImpl.java978 private void update() { method in class:CameraDeviceImpl.FrameNumberTracker
1015 update();
/frameworks/base/core/java/android/provider/
H A DDocumentsProvider.java608 public final int update( method in class:DocumentsProvider
H A DSearchIndexablesProvider.java185 public final int update( method in class:SearchIndexablesProvider
H A DSyncStateContract.java121 public static void update(ContentProviderClient provider, Uri uri, byte[] data) method in class:SyncStateContract.Helpers
125 provider.update(uri, values, null, null);
/frameworks/base/core/java/android/service/notification/
H A DNotificationListenerService.java607 NotificationRankingUpdate update) {
619 applyUpdate(update);
629 NotificationRankingUpdate update) {
639 applyUpdate(update);
648 public void onListenerConnected(NotificationRankingUpdate update) { argument
651 applyUpdate(update);
660 public void onNotificationRankingUpdate(NotificationRankingUpdate update) argument
664 applyUpdate(update);
691 private void applyUpdate(NotificationRankingUpdate update) { argument
692 mRankingMap = new RankingMap(update);
606 onNotificationPosted(IStatusBarNotificationHolder sbnHolder, NotificationRankingUpdate update) argument
628 onNotificationRemoved(IStatusBarNotificationHolder sbnHolder, NotificationRankingUpdate update) argument
[all...]
/frameworks/base/core/java/android/text/
H A DAlteredCharSequence.java50 /* package */ void update(char[] sub, int substart, int subend) { method in class:AlteredCharSequence
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1815 // may have moved and we need check that and if so to update the left and right
2757 // to update the scroll position if the focus has changed (in which
4545 update(event, true);
4555 update(event, false);
4558 private void update(MotionEvent event, boolean synthesizeNewKeys) { method in class:ViewRootImpl.SyntheticJoystickHandler
5214 // The sequence has changed, so we need to update our value and make
/frameworks/base/core/java/android/widget/
H A DDateTimeView.java40 // - listen for the next threshold time to update the view.
104 update();
107 void update() { method in class:DateTimeView
171 // Schedule the next update
173 // Currently showing the time, update at the later of twelve hours after or midnight.
178 // If the time is in the past, don't schedule an update
188 Log.d(TAG, "update needed for '" + time + "' at '" + new Date(mUpdateTimeMillis)
216 update();
227 // The update() function takes a few milliseconds to run because of
H A DEdgeEffect.java172 * This will update the state of the current visual effect and its associated animation.
189 * This will update the state of the current visual effect and its associated animation.
319 update();
355 private void update() { method in class:EdgeEffect
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 DOverScroller.java323 if (!mScrollerX.update()) {
331 if (!mScrollerY.update()) {
894 update();
900 * true if update has been done and false if animation duration has been
903 boolean update() { method in class:OverScroller.SplineOverScroller
H A DPopupWindow.java154 update(p.x, p.y, -1, -1, true);
387 * the {@link #update()} methods.</p>
389 * @see #update()
401 * the {@link #update()} methods.</p>
407 * @see #update()
491 * the {@link #update()} methods.</p>
497 * @see #update()
520 * the {@link #update()} methods.</p>
523 * @see #update()
571 * the {@link #update()} method
1435 public void update() { method in class:PopupWindow
1471 public void update(int width, int height) { method in class:PopupWindow
1488 public void update(int x, int y, int width, int height) { method in class:PopupWindow
1505 public void update(int x, int y, int width, int height, boolean force) { method in class:PopupWindow
1573 public void update(View anchor, int width, int height) { method in class:PopupWindow
1592 public void update(View anchor, int xoff, int yoff, int width, int height) { method in class:PopupWindow
1596 private void update(View anchor, boolean updateLocation, int xoff, int yoff, method in class:PopupWindow
[all...]

Completed in 7797 milliseconds

12345