Home
last modified time | relevance | path

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

1234

/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/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/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationInfoTest.java987 ArgumentCaptor<NotificationChannel> updated = in testSilenceCallsUpdateNotificationChannel() local
990 anyString(), eq(TEST_UID), updated.capture()); in testSilenceCallsUpdateNotificationChannel()
991 assertTrue((updated.getValue().getUserLockedFields() in testSilenceCallsUpdateNotificationChannel()
993 assertEquals(IMPORTANCE_LOW, updated.getValue().getImportance()); in testSilenceCallsUpdateNotificationChannel()
1027 ArgumentCaptor<NotificationChannel> updated = in testUnSilenceCallsUpdateNotificationChannel() local
1030 anyString(), eq(TEST_UID), updated.capture()); in testUnSilenceCallsUpdateNotificationChannel()
1031 assertTrue((updated.getValue().getUserLockedFields() in testUnSilenceCallsUpdateNotificationChannel()
1033 assertEquals(IMPORTANCE_DEFAULT, updated.getValue().getImportance()); in testUnSilenceCallsUpdateNotificationChannel()
1094 ArgumentCaptor<NotificationChannel> updated = in testSilenceCallsUpdateNotificationChannel_channelImportanceUnspecified() local
1097 anyString(), eq(TEST_UID), updated.capture()); in testSilenceCallsUpdateNotificationChannel_channelImportanceUnspecified()
[all …]
/frameworks/base/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/
DTestEnrollmentActivity.java115 KeyphraseSoundModel updated = new KeyphraseSoundModel(soundModel.getUuid(), in onReEnrollButtonClicked() local
117 boolean status = mEnrollmentUtil.addOrUpdateSoundModel(updated); in onReEnrollButtonClicked()
119 Toast.makeText(this, "Successfully re-enrolled, model UUID=" + updated.getUuid(), in onReEnrollButtonClicked()
/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/native/services/surfaceflinger/
DFrameTracker.cpp156 bool updated = false; in processFencesLocked() local
164 updated = true; in processFencesLocked()
175 updated = true; in processFencesLocked()
179 if (updated) { in processFencesLocked()
/frameworks/libs/net/common/framework/com/android/net/module/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/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/services/core/java/com/android/server/display/color/
DAppSaturationController.java196 boolean updated = false; in updateState()
204 updated = true; in updateState()
210 return updated; in updateState()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexManager.java666 boolean updated = false; in reconcileSecondaryDexFiles()
687 updated = mPackageDexUsage.removeUserPackage( in reconcileSecondaryDexFiles()
688 packageName, dexUseInfo.getOwnerUserId()) || updated; in reconcileSecondaryDexFiles()
701 updated = mPackageDexUsage.removeUserPackage( in reconcileSecondaryDexFiles()
702 packageName, dexUseInfo.getOwnerUserId()) || updated; in reconcileSecondaryDexFiles()
718 updated = mPackageDexUsage.removeDexFile( in reconcileSecondaryDexFiles()
719 packageName, dexPath, dexUseInfo.getOwnerUserId()) || updated; in reconcileSecondaryDexFiles()
735 updated = mPackageDexUsage.removeDexFile( in reconcileSecondaryDexFiles()
736 packageName, dexPath, dexUseInfo.getOwnerUserId()) || updated; in reconcileSecondaryDexFiles()
740 if (updated) { in reconcileSecondaryDexFiles()
DPackageDexUsage.java580 boolean updated = false; in removeUserPackage()
587 updated = true; in removeUserPackage()
595 updated = true; in removeUserPackage()
597 return updated; in removeUserPackage()
763 boolean updated = false; in clearCodePathUsedByOtherApps()
769 updated = true; in clearCodePathUsedByOtherApps()
772 return updated; in clearCodePathUsedByOtherApps()
DPackageDynamicCodeLoading.java552 boolean updated = false; in removeUser()
558 updated = true; in removeUser()
561 return updated; in removeUser()
/frameworks/base/tools/bit/
Dutil.cpp97 FileInfo updated(filename); in HasChanged() local
98 return !updated.exists || fileInfo != updated; in HasChanged()
/frameworks/opt/net/wifi/libs/WifiTrackerLib/
DAndroid.bp13 // TODO(b/187099809): Re-enable lint check once the min_sdk_version is updated
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
DWifiTracker.java809 boolean updated = false; in updateNetworkInfo()
817 updated = true; in updateNetworkInfo()
822 updated = true; in updateNetworkInfo()
829 if (updated) { in updateNetworkInfo()
858 boolean updated = false; in updateNetworkScores()
862 updated = true; in updateNetworkScores()
865 if (updated) { in updateNetworkScores()
DAccessPoint.java1521 boolean updated = false; in update()
1524 updated = (mInfo == null); in update()
1533 updated = true; in update()
1536 updated = true; in update()
1541 updated = true; in update()
1545 if (updated && mAccessPointListener != null) { in update()
1561 return updated; in update()
1949 boolean updated = !TextUtils.equals(mOsuStatus, newStatus); in onProvisioningStatus()
1953 if (updated) { in onProvisioningStatus()
/frameworks/libs/net/client-libs/netd/com/android/net/module/util/
DBaseNetdUnsolicitedEventListener.java60 public void onRouteChanged(boolean updated, @NonNull String route, @NonNull String gateway, in onRouteChanged() argument
/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/
DConversationStoreTest.java101 ConversationInfo updated = mConversationStore.getConversation(SHORTCUT_ID); in testUpdateConversation() local
102 assertEquals(newLocusId, updated.getLocusId()); in testUpdateConversation()
103 assertEquals(NOTIFICATION_CHANNEL_ID, updated.getNotificationChannelId()); in testUpdateConversation()
/frameworks/base/services/core/java/com/android/server/net/
DNetworkStatsCollection.java425 NetworkStatsHistory updated = null; in findOrCreateHistory() local
427 updated = new NetworkStatsHistory(mBucketDuration, 10); in findOrCreateHistory()
429 updated = new NetworkStatsHistory(existing, mBucketDuration); in findOrCreateHistory()
432 if (updated != null) { in findOrCreateHistory()
433 mStats.put(key, updated); in findOrCreateHistory()
434 return updated; in findOrCreateHistory()
/frameworks/native/services/inputflinger/docs/
Dpointer_capture.md43 …Whether or not the focused window has requested Pointer Capture. This is updated whenever the Disp…
44 …en of the `InputWindow` that currently has Pointer Capture. This is only updated during the dispat…
/frameworks/opt/net/wifi/libs/WifiTrackerLib/src/com/android/wifitrackerlib/
DOsuWifiEntry.java240 boolean updated = !TextUtils.equals(mOsuStatusString, newStatusString); in onProvisioningStatus()
242 if (updated) { in onProvisioningStatus()
/frameworks/native/libs/gui/include/gui/
DBufferQueueConsumer.h188 // It's updated during setConsumerName.
/frameworks/base/core/java/android/hardware/
DSystemSensorManager.java517 List<Sensor> oldList, List<Sensor> newList, List<Sensor> updated, in diffSortedSensorList() argument
537 if (updated != null) { in diffSortedSensorList()
538 updated.add(newList.get(i)); in diffSortedSensorList()
543 if (updated != null) { in diffSortedSensorList()
544 updated.add(oldList.get(j)); in diffSortedSensorList()
/frameworks/av/camera/ndk/impl/
DACameraManager.cpp573 bool updated = false; in onStatusChangedLocked() local
575 updated = mDeviceStatusMap[cameraId].removeUnavailablePhysicalId(physicalCameraId); in onStatusChangedLocked()
577 updated = mDeviceStatusMap[cameraId].addUnavailablePhysicalId(physicalCameraId); in onStatusChangedLocked()
581 if (supportsHAL3 && updated) { in onStatusChangedLocked()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
DRemotePrintDocument.java117 mDocumentInfo.updated = true;
124 mDocumentInfo.updated = true;
246 mDocumentInfo.updated = false; in update()
267 mDocumentInfo.updated = false; in update()
555 public boolean updated; field in RemotePrintDocument.RemotePrintDocumentInfo

1234