Home
last modified time | relevance | path

Searched refs:subscribeProperty (Results 1 – 8 of 8) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DPropertyHalServiceTest.java938 verify(mVehicleHal, never()).subscribeProperty(any(), anyList()); in testSetCarPropertyValuesAsync_noWaitForPropertyUpdate()
978 verify(mVehicleHal, never()).subscribeProperty(any(), anyList()); in testSetCarPropertyValuesAsync_noWaitForPropertyUpdateWithMultipleAreaRequests()
979 verify(mVehicleHal, never()).subscribeProperty(any(), anyList()); in testSetCarPropertyValuesAsync_noWaitForPropertyUpdateWithMultipleAreaRequests()
1022 }).when(mVehicleHal).subscribeProperty(any(), anyList()); in testSetCarPropertyValuesAsync_mixWaitNoWaitForPropertyUpdate()
1033 verify(mVehicleHal).subscribeProperty(any(), mListArgumentCaptor.capture()); in testSetCarPropertyValuesAsync_mixWaitNoWaitForPropertyUpdate()
1103 verify(mVehicleHal).subscribeProperty(any(), mListArgumentCaptor.capture()); in testSetCarPropertyValuesAsync_initValueSameAsTargetValue_beforeSetResult()
1152 verify(mVehicleHal).subscribeProperty(any(), mListArgumentCaptor.capture()); in testSetCarPropertyValuesAsync_initValueSameAsTargetValue_afterSetResult()
1201 verify(mVehicleHal).subscribeProperty(any(), mListArgumentCaptor.capture()); in testSetCarPropertyValuesAsync_initValueSameAsTargetValue_retry()
1254 verify(mVehicleHal).subscribeProperty(any(), mListArgumentCaptor.capture()); in testSetCarPropertyValuesAsync_initValueDiffTargetValue_timeout()
1299 verify(mVehicleHal).subscribeProperty(any(), mListArgumentCaptor.capture()); in testSetCarPropertyValuesAsync_errorSetResultAfterTargetInitValueResult()
[all …]
DVehicleHalTest.java542 mVehicleHal.subscribeProperty(
558 mVehicleHal.subscribeProperty(
590 mVehicleHal.subscribeProperty(
602 mVehicleHal.subscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY);
614 mVehicleHal.subscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY,
630 mVehicleHal.subscribeProperty(
642 mVehicleHal.subscribeProperty(
651 mVehicleHal.subscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY,
660 mVehicleHal.subscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY,
669 mVehicleHal.subscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY,
[all …]
DPowerHalServiceUnitTest.java167 verify(mHal).subscribeProperty(any(), eq(AP_POWER_STATE_REQ)); in testInit()
168 verify(mHal).subscribeProperty(any(), eq(DISPLAY_BRIGHTNESS)); in testInit()
169 verify(mHal).subscribeProperty(any(), eq(PER_DISPLAY_BRIGHTNESS)); in testInit()
175 .subscribeProperty(any(), eq(AP_POWER_STATE_REQ)); in testInit_subscribeFailure()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarPropertyServiceUnitTest.java638 verify(mHalService).subscribeProperty(List.of(createCarSubscriptionOption(SPEED_ID, in testRegisterUnregisterForContinuousProperty()
651 verify(mHalService).subscribeProperty(List.of(createCarSubscriptionOption(SPEED_ID, in testRegisterUnregisterForContinuousProperty()
664 verify(mHalService).subscribeProperty(List.of(createCarSubscriptionOption(SPEED_ID, in testRegisterUnregisterForContinuousProperty()
692 verify(mHalService).subscribeProperty(List.of( in testRegisterForMultipleProperties()
733 verify(mHalService).subscribeProperty(List.of(createCarSubscriptionOption( in testRegisterUnregisterForOnChangeProperty()
748 verify(mHalService, never()).subscribeProperty(any()); in testRegisterUnregisterForOnChangeProperty()
792 verify(mHalService).subscribeProperty(subscribeOptions); in testRegisterListenerWithSubscription()
827 verify(mHalService).subscribeProperty(sanitizedOptions); in testRegisterListenerWithSubscription_enableVurAndResolution()
853 verify(mHalService).subscribeProperty(sanitizedOptions); in testRegisterListenerWithSubscription_VurFeatureOff()
881 verify(mHalService).subscribeProperty(sanitizedOptions); in testRegisterListenerWithSubscription_ResolutionFeatureOff()
[all …]
/packages/services/Car/service/src/com/android/car/hal/
DVehicleHal.java606 public void subscribeProperty(HalServiceBase service, int property) in subscribeProperty() method in VehicleHal
608 subscribeProperty(service, property, /* samplingRateHz= */ 0f); in subscribeProperty()
617 subscribeProperty(service, property); in subscribePropertySafe()
633 public void subscribeProperty(HalServiceBase service, int property, float samplingRateHz) in subscribeProperty() method in VehicleHal
636 subscribeProperty(service, List.of(options)); in subscribeProperty()
645 subscribeProperty(service, property, sampleRateHz); in subscribePropertySafe()
660 public void subscribeProperty(HalServiceBase service, List<HalSubscribeOptions> in subscribeProperty() method in VehicleHal
DPowerHalService.java693 mHal.subscribeProperty(this, propId); in init()
DPropertyHalService.java1200 public void subscribeProperty(List<CarSubscription> carSubscriptions) in subscribeProperty() method in PropertyHalService
1428 mVehicleHal.subscribeProperty(this, toHalSubscribeOptions(diffSubscribeOptions)); in updateSubscriptionRateLocked()
/packages/services/Car/service/src/com/android/car/
DCarPropertyService.java537 mPropertyHalService.subscribeProperty(filteredSubscriptions); in applyStagedChangesLocked()