Home
last modified time | relevance | path

Searched refs:newProperties (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/core/tests/coretests/testdoubles/src/com/android/internal/util/
H A DFakeLatencyTracker.java182 SparseArray<ActionProperties> newProperties = mLastPropertiesUpdate.get(); in waitForAllPropertiesEnableState()
183 if (newProperties != null) { in waitForAllPropertiesEnableState()
184 for (int i = 0; i < newProperties.size(); i++) { in waitForAllPropertiesEnableState()
185 if (newProperties.get(i).isEnabled() != enabledState) { in waitForAllPropertiesEnableState()
203 SparseArray<ActionProperties> newProperties = mLastPropertiesUpdate.get(); in waitForMatchingActionProperties()
204 if (newProperties != null) { in waitForMatchingActionProperties()
205 if (newProperties.size() > 0) { in waitForMatchingActionProperties()
206 return newProperties.get(actionProperties.getAction()).equals( in waitForMatchingActionProperties()
224 if (newProperties != null) { in waitForActionEnabledState()
225 if (newProperties.size() > 0) { in waitForActionEnabledState()
[all …]
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/location/provider/
H A DLocationProviderManagerTest.java231 ProviderProperties newProperties = new ProviderProperties.Builder() in testProperties() local
239 mProvider.setProperties(newProperties); in testProperties()
240 assertThat(mManager.getProperties()).isEqualTo(newProperties); in testProperties()