Home
last modified time | relevance | path

Searched refs:updated (Results 1 – 25 of 67) sorted by relevance

123

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DRatRatcheterTest.java57 boolean updated = RatRatcheter.updateBandwidths(bandwidths, mServiceState); in testUpdateBandwidthsSuccess()
59 assertTrue(updated); in testUpdateBandwidthsSuccess()
69 boolean updated = RatRatcheter.updateBandwidths(newBandwidths, mServiceState); in testUpdateBandwidthsFailure()
71 assertFalse(updated); in testUpdateBandwidthsFailure()
80 boolean updated = RatRatcheter.updateBandwidths(null, mServiceState); in testUpdateBandwidthsNull()
82 assertFalse(updated); in testUpdateBandwidthsNull()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationInfoTest.java1017 ArgumentCaptor<NotificationChannel> updated = in testSilentlyChangedCallsUpdateNotificationChannel_blockingHelper() local
1020 anyString(), eq(TEST_UID), updated.capture()); in testSilentlyChangedCallsUpdateNotificationChannel_blockingHelper()
1021 assertTrue((updated.getValue().getUserLockedFields() in testSilentlyChangedCallsUpdateNotificationChannel_blockingHelper()
1023 assertEquals(IMPORTANCE_LOW, updated.getValue().getImportance()); in testSilentlyChangedCallsUpdateNotificationChannel_blockingHelper()
1049 ArgumentCaptor<NotificationChannel> updated = in testKeepUpdatesNotificationChannel_blockingHelper() local
1052 anyString(), eq(TEST_UID), updated.capture()); in testKeepUpdatesNotificationChannel_blockingHelper()
1079 ArgumentCaptor<NotificationChannel> updated = in testNoActionsUpdatesNotificationChannel_blockingHelper() local
1082 anyString(), eq(TEST_UID), updated.capture()); in testNoActionsUpdatesNotificationChannel_blockingHelper()
1111 ArgumentCaptor<NotificationChannel> updated = in testSilenceCallsUpdateNotificationChannel() local
1114 anyString(), eq(TEST_UID), updated.capture()); in testSilenceCallsUpdateNotificationChannel()
[all …]
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/wifi/
DTimestampedScoredNetworkTest.java50 ScoredNetwork updated = createTestScoredNetwork("updated"); in testUpdate() local
51 impl.update(updated, time); in testUpdate()
53 assertThat(impl.getScore()).isEqualTo(updated); in testUpdate()
/frameworks/base/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/
DTestEnrollmentActivity.java110 KeyphraseSoundModel updated = new KeyphraseSoundModel(soundModel.uuid, in onReEnrollButtonClicked() local
112 boolean status = mEnrollmentUtil.addOrUpdateSoundModel(updated); in onReEnrollButtonClicked()
114 Toast.makeText(this, "Successfully re-enrolled, model UUID=" + updated.uuid, in onReEnrollButtonClicked()
/frameworks/native/services/surfaceflinger/
DFrameTracker.cpp154 bool updated = false; in processFencesLocked() local
162 updated = true; in processFencesLocked()
173 updated = true; in processFencesLocked()
177 if (updated) { in processFencesLocked()
/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
DOneTimeSettingsListener.java72 final boolean updated = mLatch.await(mTimeoutMs, TimeUnit.MILLISECONDS); in assertCalled()
73 if (!updated) { in assertCalled()
/frameworks/libs/net/common/framework/android/net/util/
DLinkPropertiesUtils.java83 public final List<T> updated = new ArrayList<>(); field in LinkPropertiesUtils.CompareOrUpdateResult
107 updated.add(newItem); in CompareOrUpdateResult()
123 + "] updated=[" + TextUtils.join(",", updated) in toString()
/frameworks/base/services/core/java/com/android/server/display/color/
DAppSaturationController.java178 boolean updated = false; in updateState()
186 updated = true; in updateState()
192 return updated; in updateState()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexManager.java487 boolean updated = false; in reconcileSecondaryDexFiles()
508 updated = mPackageDexUsage.removeUserPackage( in reconcileSecondaryDexFiles()
509 packageName, dexUseInfo.getOwnerUserId()) || updated; in reconcileSecondaryDexFiles()
522 updated = mPackageDexUsage.removeDexFile( in reconcileSecondaryDexFiles()
523 packageName, dexPath, dexUseInfo.getOwnerUserId()) || updated; in reconcileSecondaryDexFiles()
539 updated = mPackageDexUsage.removeDexFile( in reconcileSecondaryDexFiles()
540 packageName, dexPath, dexUseInfo.getOwnerUserId()) || updated; in reconcileSecondaryDexFiles()
544 if (updated) { in reconcileSecondaryDexFiles()
DPackageDexUsage.java602 boolean updated = false; in removeUserPackage()
609 updated = true; in removeUserPackage()
617 updated = true; in removeUserPackage()
619 return updated; in removeUserPackage()
DPackageDynamicCodeLoading.java552 boolean updated = false; in removeUser()
558 updated = true; in removeUser()
561 return updated; in removeUser()
/frameworks/native/opengl/specs/
DEGL_ANDROID_front_buffer_auto_refresh.txt41 surface has been updated, but it comes at the cost of doing potentially
42 unneeded composition work if the window surface has not been updated.
/frameworks/base/tools/bit/
Dutil.cpp97 FileInfo updated(filename); in HasChanged() local
98 return !updated.exists || fileInfo != updated; in HasChanged()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
DWifiTracker.java801 boolean updated = false; in updateNetworkInfo()
809 updated = true; in updateNetworkInfo()
814 updated = true; in updateNetworkInfo()
821 if (updated) { in updateNetworkInfo()
850 boolean updated = false; in updateNetworkScores()
854 updated = true; in updateNetworkScores()
857 if (updated) { in updateNetworkScores()
DAccessPoint.java1470 boolean updated = false; in update()
1473 updated = (mInfo == null); in update()
1482 updated = true; in update()
1485 updated = true; in update()
1490 updated = true; in update()
1494 if (updated && mAccessPointListener != null) { in update()
1510 return updated; in update()
1893 boolean updated = !TextUtils.equals(mOsuStatus, newStatus); in onProvisioningStatus()
1897 if (updated) { in onProvisioningStatus()
/frameworks/base/services/core/java/com/android/server/net/
DNetworkStatsCollection.java417 NetworkStatsHistory updated = null; in findOrCreateHistory() local
419 updated = new NetworkStatsHistory(mBucketDuration, 10); in findOrCreateHistory()
421 updated = new NetworkStatsHistory(existing, mBucketDuration); in findOrCreateHistory()
424 if (updated != null) { in findOrCreateHistory()
425 mStats.put(key, updated); in findOrCreateHistory()
426 return updated; in findOrCreateHistory()
/frameworks/base/packages/Tethering/src/android/net/util/
DBaseNetdUnsolicitedEventListener.java60 public void onRouteChanged(boolean updated, @NonNull String route, @NonNull String gateway, in onRouteChanged() argument
/frameworks/base/core/java/android/hardware/
DSystemSensorManager.java487 List<Sensor> oldList, List<Sensor> newList, List<Sensor> updated, in diffSortedSensorList() argument
507 if (updated != null) { in diffSortedSensorList()
508 updated.add(newList.get(i)); in diffSortedSensorList()
513 if (updated != null) { in diffSortedSensorList()
514 updated.add(oldList.get(j)); in diffSortedSensorList()
/frameworks/native/libs/gui/include/gui/
DBufferQueueConsumer.h184 // It's updated during setConsumerName.
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
DRemotePrintDocument.java116 mDocumentInfo.updated = true;
123 mDocumentInfo.updated = true;
245 mDocumentInfo.updated = false; in update()
266 mDocumentInfo.updated = false; in update()
549 public boolean updated; field in RemotePrintDocument.RemotePrintDocumentInfo
/frameworks/base/services/core/java/com/android/server/pm/permission/
DPermissionsState.java451 final boolean updated = permissionData.updateFlags(userId, flagMask, flagValues); in updatePermissionFlags()
452 if (updated) { in updatePermissionFlags()
470 return updated; in updatePermissionFlags()
/frameworks/base/core/proto/android/server/
Dwirelesschargerdetector.proto45 // True if the rest position should be updated if at rest.
/frameworks/base/services/core/java/com/android/server/wm/
DCompatModePackages.java173 public void handlePackageAddedLocked(String packageName, boolean updated) { in handlePackageAddedLocked() argument
186 if (updated) { in handlePackageAddedLocked()
/frameworks/base/lowpan/tests/
DREADME.md19 2. sync over the updated library to the device 'adb sync'
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
Dpixel_format_f32.rsh17 // the color (red, green, blue) of FocusPixel is updated and ready to be used in

123