Searched defs:update (Results 1 - 25 of 57) sorted by relevance

123

/frameworks/base/core/java/android/security/
H A DMd5MessageDigest.java34 update(input);
39 public native void update(byte[] input); method in class:Md5MessageDigest
H A DMessageDigest.java54 public abstract void update(byte[] input); method in class:MessageDigest
H A DSha1MessageDigest.java34 update(input);
39 public native void update(byte[] input); method in class:Sha1MessageDigest
/frameworks/base/services/java/com/android/server/status/
H A DDateView.java73 void setUpdates(boolean update) { argument
74 if (update != mUpdating) {
75 mUpdating = update;
76 if (update) {
H A DStatusBarIcon.java97 public void update(Context context, IconData data) throws StatusBarException { method in class:StatusBarIcon
130 public void update(int number) { method in class:StatusBarIcon
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
H A DDisabledProvider.java51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:DisabledProvider
H A DEnabledProvider.java51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:EnabledProvider
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java74 /** see {@link ContentProvider#update} */
75 public int update(Uri url, ContentValues values, String selection, method in class:ContentProviderClient
77 return mContentProvider.update(url, values, selection, selectionArgs);
H A DIContentProvider.java54 public int update(Uri url, ContentValues values, String selection, method in interface:IContentProvider
/frameworks/base/core/java/android/database/sqlite/
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/provider/
H A DSyncStateContract.java115 public static void update(ContentProviderClient provider, Uri uri, byte[] data) method in class:SyncStateContract.Helpers
119 provider.update(uri, values, null, null);
/frameworks/base/core/java/android/widget/
H A DDateTimeView.java42 // - listen for the next threshold time to update the view.
100 update();
103 void update() { method in class:DateTimeView
167 // Schedule the next update
169 // Currently showing the time, update at the later of twelve hours after or midnight.
174 // If the time is in the past, don't schedule an update
184 Log.d(TAG, "update needed for '" + time + "' at '" + new Date(mUpdateTimeMillis)
244 // The update() function takes a few milliseconds to run because of
252 update();
260 update();
[all...]
/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java113 * Execute update using the current internal state as {@code WHERE} clause.
115 public int update(SQLiteDatabase db, String table, ContentValues values) { method in class:SelectionBuilder
116 return db.update(table, values, getSelection(), getSelectionArgs());
H A DSyncStateContentProviderHelper.java30 * and implements query/insert/update/delete to access that table using the
99 public int update(SQLiteDatabase db, ContentValues values, method in class:SyncStateContentProviderHelper
101 return db.update(SYNC_STATE_TABLE, values, selection, selectionArgs);
104 public int update(SQLiteDatabase db, long rowId, Object data) { method in class:SyncStateContentProviderHelper
/frameworks/base/core/java/com/google/android/mms/util/
H A DSqliteWrapper.java88 public static int update(Context context, ContentResolver resolver, Uri uri, method in class:SqliteWrapper
91 return resolver.update(uri, values, where, selectionArgs);
93 Log.e(TAG, "Catch a SQLiteException when update: ", e);
/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java97 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { method in class:SuggestionProvider
98 throw new UnsupportedOperationException("update not supported");
/frameworks/base/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/services/java/com/android/server/
H A DDockObserver.java90 update();
118 update();
124 private final void update() { method in class:DockObserver
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaCall.java152 update (CdmaConnection conn, DriverCall dc) { method in class:CdmaCall
181 * but no response has yet been received so update() has not yet been called
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmCall.java148 update (GsmConnection conn, DriverCall dc) { method in class:GsmCall
177 * but no response has yet been received so update() has not yet been called
/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/webkit/
H A DWebHistoryItem.java211 private void update(String url, String originalUrl, String title, method in class:WebHistoryItem
/frameworks/base/core/java/com/android/internal/util/
H A DProcessedMessages.java56 update(message, state, orgState);
65 public void update(Message message, HierarchicalState state, HierarchicalState orgState) { method in class:ProcessedMessages.Info
195 info.update(message, state, orgState);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalProvider.java131 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { method in class:LocalProvider
140 count = db.update("data", values, "_id=" + rowId, null);
145 "Cannot update URL: " + url);
/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProvider.java198 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { method in class:MemoryFileProvider
199 throw new UnsupportedOperationException("update not supported");

Completed in 659 milliseconds

123