Searched refs:update (Results 26 - 50 of 226) sorted by relevance

12345678910

/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
H A DTestReceiver.java54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:TestReceiver
/frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:NullProvider
/frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:NullProvider
/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());
/frameworks/native/services/surfaceflinger/Effects/
H A DDaltonizer.cpp46 update();
51 void Daltonizer::update() { function in class:android::Daltonizer
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAppCompatPopupWindow.java67 public void update(View anchor, int xoff, int yoff, int width, int height) { method in class:AppCompatPopupWindow
72 super.update(anchor, xoff, yoff, width, height);
/frameworks/base/core/java/com/android/server/net/
H A DNetlinkTracker.java43 * NetworkManagementService. When the class receives update notifications from
44 * the NetworkManagementService notification threads, it applies the update to
46 * the update via the callback.
51 * triggers an update callback after the change is made, the owner may get more
74 public void update(); method in interface:NetlinkTracker.Callback
115 mCallback.update();
129 mCallback.update();
143 mCallback.update();
157 mCallback.update();
171 mCallback.update();
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardMessageArea.java79 update();
159 update();
171 update();
188 void update() { method in class:KeyguardMessageArea
208 update();
216 update();
/frameworks/base/services/tests/servicestests/src/com/android/server/updates/
H A DCertPinInstallReceiverTest.java164 signer.update(content.trim().getBytes());
165 signer.update(version.trim().getBytes());
166 signer.update(requiredHash.getBytes());
177 signer.update(content.trim().getBytes());
178 signer.update(version.trim().getBytes());
179 signer.update(requiredPrevious.trim().getBytes());
/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/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DCompoundTransform.java63 protected void update() { method in class:CompoundTransform.Component
86 update();
106 update();
110 update();
126 update();
/frameworks/ex/common/java/com/android/common/contacts/
H A DDataUsageStatUpdater.java77 * @return true when update request is correctly sent. False when the request fails,
100 * @see #update(Collection, Collection, String)
102 * @return true when update request is correctly sent. False when the request fails,
138 return update(contactIds, dataIds, DataUsageFeedback.USAGE_TYPE_LONG_TEXT);
150 * @see #update(Collection, Collection, String)
152 * @return true when update request is correctly sent. False when the request fails,
188 return update(contactIds, dataIds, DataUsageFeedback.USAGE_TYPE_SHORT_TEXT);
195 * @return true when one or more of update requests are correctly sent.
198 private boolean update(Collection<Long> contactIds, Collection<Long> dataIds, String type) { method in class:DataUsageStatUpdater
215 if (mResolver.update(ur
[all...]
/frameworks/ex/common/java/com/android/common/content/
H A DSyncStateContentProviderHelper.java28 * and implements query/insert/update/delete to access that table using the
95 public int update(SQLiteDatabase db, ContentValues values, method in class:SyncStateContentProviderHelper
97 return db.update(SYNC_STATE_TABLE, values, selection, selectionArgs);
100 public int update(SQLiteDatabase db, long rowId, Object data) { method in class:SyncStateContentProviderHelper
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPermissionMonitor.java51 * Does a mass update at boot and then monitors for app install/remove.
149 update(mUsers, mApps, true);
183 private void update(Set<Integer> users, Map<Integer, Boolean> apps, boolean add) { method in class:PermissionMonitor
214 update(users, mApps, true);
226 update(users, mApps, false);
248 update(mUsers, apps, true);
265 update(mUsers, apps, false);
/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/telephony/java/com/android/ims/internal/
H A DIImsCallSession.aidl129 * Accepts an incoming call or session update.
138 * Rejects an incoming call or session update.
187 void update(int callType, in ImsStreamMediaProfile profile);
/frameworks/compile/mclinker/lib/Support/Unix/
H A DSystem.inc55 // On darwin, we want to update the version to match that of the
/frameworks/opt/telephony/src/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/av/services/camera/libcameraservice/utils/
H A DCameraTraces.cpp51 pcs.update();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationOverflowContainer.java58 mViewInvertHelper.update(dark);
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java56 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:SingleUserProvider
/frameworks/base/tests/CoreTests/android/core/
H A DSha1Test.java49 digest.update(mTestData[i].input.getBytes());
/frameworks/native/include/gui/
H A DSurfaceComposerClient.h202 // update(display, Rect(), useIdentityTransform);
203 status_t update(const sp<IBinder>& display,
205 status_t update(const sp<IBinder>& display,
208 status_t update(const sp<IBinder>& display,
212 status_t update(const sp<IBinder>& display,
223 // release() or update() is called
/frameworks/native/services/sensorservice/
H A DFusion.h79 void update(const vec3_t& z, const vec3_t& Bi, float sigma);
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteControllerDialog.java132 * will listen to changes on this session and update the UI automatically in
160 update();
200 if (update()) {
248 private boolean update() { method in class:MediaRouteControllerDialog
359 update();
364 update();
386 update();
392 update();

Completed in 771 milliseconds

12345678910