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

1234567

/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
321 ALOGE("%s: Unable to update metadata entry %s.%s (%x): %s (%d)",
330 "%s: Failed to validate metadata structure after update %p",
/frameworks/av/camera/ndk/impl/
H A DACameraDevice.cpp660 update();
664 CameraDevice::FrameNumberTracker::update() { function in class:android::CameraDevice::FrameNumberTracker
1307 metadataCopy.update(ANDROID_LENS_INFO_SHADING_MAP_SIZE, dev->mShadingMapSize, /*data_count*/2);
1308 metadataCopy.update(ANDROID_SYNC_FRAME_NUMBER, &frameNumber, /*data_count*/1);
H A DACameraMetadata.cpp80 mData.update(ANDROID_REQUEST_AVAILABLE_CAPABILITIES, capabilities);
120 mData.update(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS, filteredStreamConfigs);
147 mData.update(ANDROID_DEPTH_AVAILABLE_DEPTH_STREAM_CONFIGURATIONS, filteredDepthStreamConfigs);
180 ACameraMetadata::update(uint32_t tag, uint32_t count, const uint8_t* data) { function in class:ACameraMetadata
185 ACameraMetadata::update(uint32_t tag, uint32_t count, const int32_t* data) { function in class:ACameraMetadata
190 ACameraMetadata::update(uint32_t tag, uint32_t count, const float* data) { function in class:ACameraMetadata
195 ACameraMetadata::update(uint32_t tag, uint32_t count, const double* data) { function in class:ACameraMetadata
200 ACameraMetadata::update(uint32_t tag, uint32_t count, const int64_t* data) { function in class:ACameraMetadata
205 ACameraMetadata::update(uint32_t tag, uint32_t count, const ACameraMetadata_rational* data) { function in class:ACameraMetadata
/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/
H A DMediaCodecList.cpp607 const char *update = NULL; local
623 } else if (!strcmp(attrs[i], "update")) {
627 update = attrs[i + 1];
640 mUpdate = (update != NULL) && parseBoolean(update);
678 const char *update = NULL; local
694 } else if (!strcmp(attrs[i], "update")) {
698 update = attrs[i + 1];
711 mUpdate = (update != NULL) && parseBoolean(update);
801 const char *update = NULL; local
[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.java995 public void update(ActivityOptions otherOptions) { method in class:ActivityOptions
1180 result.update(this);
/frameworks/base/core/java/android/content/
H A DContentProvider.java77 * <li>{@link #update} which updates existing data in the content provider</li>
83 * {@link #update}) may be called from many threads at once, and must be thread-safe.
347 public int update(String callingPkg, Uri uri, ContentValues values, String selection, method in class:ContentProvider.Transport
356 return ContentProvider.this.update(uri, values, selection, selectionArgs);
1173 * Implement this to handle requests to update one or more rows.
1174 * The implementation should update all rows matching the selection
1183 * is an update request for a specific record.
1184 * @param values A set of column_name/value pairs to update in the database.
1186 * @param selection An optional filter to match rows to update.
1189 public abstract int update( method in class:ContentProvider
[all...]
H A DContentProviderClient.java292 /** See {@link ContentProvider#update ContentProvider.update} */
293 public int update(@NonNull Uri url, @Nullable ContentValues values, @Nullable String selection, method in class:ContentProviderClient
299 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.java1387 * If the content provider supports transactions the update will be atomic.
1397 public final int update(@RequiresPermission.Write @NonNull Uri uri, method in class:ContentResolver
1407 int rowsUpdated = provider.update(mPackageName, uri, values, where, selectionArgs);
1409 maybeLogUpdateToEventLog(durationMillis, uri, "update", where);
H A DIContentProvider.java48 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.java168 * or updating the current row. Thus the insert or update always occurs.
210 public static final int OPEN_READWRITE = 0x00000000; // update native code if changing
216 public static final int OPEN_READONLY = 0x00000001; // update native code if changing
218 private static final int OPEN_READ_MASK = 0x00000001; // update native code if changing
228 public static final int NO_LOCALIZED_COLLATORS = 0x00000010; // update native code if changing
234 public static final int CREATE_IF_NECESSARY = 0x10000000; // update native code if changing
928 * Mark this table as syncable. When an update occurs in this table the
942 * table. When an update occurs in this table the _sync_dirty field of the
946 * @param table an update on this table will trigger a sync time removal
1512 * @param table the table to update i
1522 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.java1350 private void update() { method in class:CameraDeviceImpl.FrameNumberTracker
1404 update();
/frameworks/base/core/java/android/provider/
H A DDocumentsProvider.java696 public final int update( method in class:DocumentsProvider
H A DSearchIndexablesProvider.java187 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.java867 NotificationRankingUpdate update) {
889 applyUpdateLocked(update);
907 NotificationRankingUpdate update) {
917 applyUpdateLocked(update);
928 public void onListenerConnected(NotificationRankingUpdate update) { argument
931 applyUpdateLocked(update);
938 public void onNotificationRankingUpdate(NotificationRankingUpdate update) argument
942 applyUpdateLocked(update);
991 private void applyUpdateLocked(NotificationRankingUpdate update) { argument
992 mRankingMap = new RankingMap(update);
866 onNotificationPosted(IStatusBarNotificationHolder sbnHolder, NotificationRankingUpdate update) argument
906 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.java519 * is a different instance, and we need to update our
922 // Request to update light center.
2058 // may have moved and we need check that and if so to update the left and right
3026 // to update the scroll position if the focus has changed (in which
4915 update(event, true);
4925 update(event, false);
4928 private void update(MotionEvent event, boolean synthesizeNewKeys) { method in class:ViewRootImpl.SyntheticJoystickHandler
5588 // The sequence has changed, so we need to update our value and make
/frameworks/base/core/java/android/widget/
H A DDateTimeView.java49 // - listen for the next threshold time to update the view.
124 update();
131 update();
140 update();
144 void update() { method in class:DateTimeView
210 // Schedule the next update
212 // Currently showing the time, update at the later of twelve hours after or midnight.
217 // If the time is in the past, don't schedule an update
309 update();
333 update();
[all...]
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.
320 update();
356 private void update() { method in class:EdgeEffect

Completed in 1802 milliseconds

1234567