/frameworks/base/core/java/com/android/internal/app/ |
MediaRouteControllerDialog.java | 167 // volume update. 191 if (update()) { 210 update(); method 239 private boolean update() { method in class:MediaRouteControllerDialog 292 update(); method 297 update(); method 310 update(); method 315 update(); method
|
/frameworks/base/keystore/java/android/security/keystore/ |
AndroidKeyStoreECDSASignatureSpi.java | 73 public byte[] update(byte[] input, int inputOffset, int inputLength) method in class:AndroidKeyStoreECDSASignatureSpi.NONE.TruncateToFieldSizeMessageStreamer
|
/frameworks/base/libs/input/ |
SpriteController.cpp | 115 // Each sprite update record includes a reference to its associated sprite so we can 137 SpriteUpdate& update = updates.editItemAt(i); local 139 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) { 140 update.state.surfaceWidth = update.state.icon.bitmap.width(); 141 update.state.surfaceHeight = update.state.icon.bitmap.height(); 142 update.state.surfaceDrawn = false; 143 update.state.surfaceVisible = false 155 SpriteUpdate& update = updates.editItemAt(i); local 196 SpriteUpdate& update = updates.editItemAt(i); local 247 SpriteUpdate& update = updates.editItemAt(i); local 333 const SpriteUpdate& update = updates.itemAt(i); local [all...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
DrawerController.java | 72 abstract void update(); method in class:DrawerController 174 void update() { method in class:DrawerController.RuntimeDrawerController 229 void update() {} method in class:DrawerController.DummyDrawerController
|
NavigationView.java | 110 void update() { method in class:NavigationView
|
SearchViewManager.java | 104 void update(RootInfo root) { method in class:SearchViewManager 106 if (DEBUG) Log.d(TAG, "update called before Search MenuItem installed."); 158 // Causes calling onClose(). onClose() is triggering directory content update.
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/utils/ |
HTTPRequest.java | 183 hash.update((byte) ':'); 185 hash.update(octets);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
Divider.java | 52 update(mContext.getResources().getConfiguration()); 63 update(newConfig); 87 private void update(Configuration configuration) { method in class:Divider 104 // Update state because animations won't finish.
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
PermissionMonitor.java | 51 * Does a mass update at boot and then monitors for app install/remove. 149 update(mUsers, mApps, true); method 183 private void update(Set<Integer> users, Map<Integer, Boolean> apps, boolean add) { method in class:PermissionMonitor 214 update(users, mApps, true); method 226 update(users, mApps, false); method 248 update(mUsers, apps, true); method 265 update(mUsers, apps, false); method
|
/frameworks/base/services/core/java/com/android/server/power/ |
WirelessChargerDetector.java | 182 public boolean update(boolean isPowered, int plugType, int batteryLevel) { method in class:WirelessChargerDetector 188 // Update the rest position asynchronously.
|
/frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/ |
UsageLogActivity.java | 65 long lastEventTime = mAdapter.update(events); 76 public long update(UsageEvents results) { method in class:UsageLogActivity.Adapter
|
UsageStatsActivity.java | 89 mAdapter.update(stats); 95 public void update(Map<String, UsageStats> stats) { method in class:UsageStatsActivity.Adapter
|
/frameworks/ex/common/java/com/android/common/contacts/ |
DataUsageStatUpdater.java | 77 * @return true when update request is correctly sent. False when the request fails, 96 * Update usage statistics information using a list of email addresses. 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); 146 * Update usage statistics information using a list of phone numbers. 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 [all...] |
/frameworks/ex/common/java/com/android/common/content/ |
SQLiteContentProvider.java | 74 * The equivalent of the {@link #update} method, but invoked within a transaction. 148 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:SQLiteContentProvider
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
AnqpCache.java | 143 public void update(NetworkDetail network, method in class:AnqpCache
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
MockKeyStore.java | 24 public void update(byte[] blob, int flag) { method in class:MockKeyStore.KeyBlob 114 access(uid, key, true).update(value, flags); 144 access(destUid, destKey, true).update(blob.blob, blob.flag);
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
SubscriptionInfoUpdaterTest.java | 86 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:SubscriptionInfoUpdaterTest.FakeSubscriptionContentProvider 319 after IccId query, update subscriptionDB */
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
ImsPhoneConnectionTest.java | 123 assertTrue(mConnectionUT.update(mImsCall, Call.State.ACTIVE)); 126 verify(mForeGroundCall, times(1)).update(eq(mConnectionUT), eq(mImsCall), 136 assertTrue(mConnectionUT.update(mImsCall, Call.State.ACTIVE)); 139 verify(mForeGroundCall, times(1)).update(eq(mConnectionUT), eq(mImsCall), 150 assertFalse(mConnectionUT.update(mImsCall, Call.State.ACTIVE)); 151 verify(mForeGroundCall, times(0)).update(eq(mConnectionUT), eq(mImsCall), 203 // process post dial string during update 204 assertTrue(mConnectionUT.update(mImsCall, Call.State.ACTIVE)); 227 // process post dial string during update 228 assertTrue(mConnectionUT.update(mImsCall, Call.State.ACTIVE)) [all...] |
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/ |
DcTrackerMock.java | 125 public void update() { method in class:DcTrackerMock
|
/frameworks/support/design/eclair-mr1/android/support/design/widget/ |
ValueAnimatorCompatImplEclairMr1.java | 159 private void update() { method in class:ValueAnimatorCompatImplEclairMr1 161 // Update the animated fraction 191 update();
|
/frameworks/support/v7/mediarouter/src/android/support/v7/app/ |
OverlayListView.java | 90 if (!object.update(getDrawingTime())) { 227 public boolean update(long currentTime) { method in class:OverlayListView.OverlayObject
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
LinearSmoothScroller.java | 112 action.update(-dx, -dy, time, mDecelerateInterpolator); 246 action.update((int) (mInterimTargetDx * TARGET_SEEK_EXTRA_SCROLL_RATIO)
|
/hardware/bsp/intel/peripheral/libupm/src/adxl345/ |
adxl345.cxx | 128 Adxl345::update(); 161 Adxl345::update(void) function in class:Adxl345
|
/hardware/bsp/intel/peripheral/libupm/src/h3lis331dl/ |
h3lis331dl.cxx | 549 void H3LIS331DL::update() function in class:H3LIS331DL
|
/hardware/bsp/intel/peripheral/libupm/src/hmc5883l/ |
hmc5883l.cxx | 117 Hmc5883l::update(); 121 Hmc5883l::update(void) function in class:Hmc5883l
|