Searched refs:unsubscribeProperty (Results 1 – 6 of 6) sorted by relevance
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | PropertyHalServiceTest.java | 1076 verify(mVehicleHal).unsubscribeProperty(any(), eq(HVAC_TEMPERATURE_SET)); in testSetCarPropertyValuesAsync_mixWaitNoWaitForPropertyUpdate() 1125 verify(mVehicleHal).unsubscribeProperty(any(), eq(HVAC_TEMPERATURE_SET)); in testSetCarPropertyValuesAsync_initValueSameAsTargetValue_beforeSetResult() 1174 verify(mVehicleHal).unsubscribeProperty(any(), eq(HVAC_TEMPERATURE_SET)); in testSetCarPropertyValuesAsync_initValueSameAsTargetValue_afterSetResult() 1228 verify(mVehicleHal).unsubscribeProperty(any(), eq(HVAC_TEMPERATURE_SET)); in testSetCarPropertyValuesAsync_initValueSameAsTargetValue_retry() 1318 verify(mVehicleHal).unsubscribeProperty(any(), eq(HVAC_TEMPERATURE_SET)); in testSetCarPropertyValuesAsync_errorSetResultAfterTargetInitValueResult() 1355 verify(mVehicleHal).unsubscribeProperty(any(), eq(HVAC_TEMPERATURE_SET)); in testSetCarPropertyValuesAsync_callbackOnlyCalledOncePerRequest() 1462 verify(mVehicleHal).unsubscribeProperty(any(), eq(HVAC_TEMPERATURE_SET)); in testSetCarPropertyValuesAsync_propertyUpdatedThroughEvent() 1463 verify(mVehicleHal).unsubscribeProperty(any(), eq(PERF_VEHICLE_SPEED)); in testSetCarPropertyValuesAsync_propertyUpdatedThroughEvent() 1521 verify(mVehicleHal).unsubscribeProperty(any(), eq(HVAC_TEMPERATURE_SET)); in testSetCarPropertyValuesAsync_propertyUpdatedThroughEvent_ignoreNonTargetEvent() 1567 mPropertyHalService.unsubscribeProperty(PERF_VEHICLE_SPEED); in testSetCarPropertyValuesAsync_updateSubscriptionRate() [all …]
|
D | VehicleHalTest.java | 1085 mVehicleHal.unsubscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY); 1094 mVehicleHal.unsubscribeProperty(mPowerHalService, UNSUPPORTED_PROPERTY); 1103 mVehicleHal.unsubscribeProperty(mPropertyHalService, SOME_READ_WRITE_STATIC_PROPERTY); 1115 mVehicleHal.unsubscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY)); 1124 mVehicleHal.unsubscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY)); 1133 mVehicleHal.unsubscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY)); 1138 mVehicleHal.unsubscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY); 1155 mVehicleHal.unsubscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY); 1169 mVehicleHal.unsubscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY); 1174 mVehicleHal.unsubscribeProperty(mPowerHalService, SOME_READ_ON_CHANGE_PROPERTY);
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/ |
D | CarPropertyServiceUnitTest.java | 662 verify(mHalService, never()).unsubscribeProperty(anyInt()); in testRegisterUnregisterForContinuousProperty() 670 verify(mHalService).unsubscribeProperty(SPEED_ID); in testRegisterUnregisterForContinuousProperty() 703 verify(mHalService).unsubscribeProperty(HVAC_TEMP); in testRegisterForMultipleProperties() 709 verify(mHalService).unsubscribeProperty(SPEED_ID); in testRegisterForMultipleProperties() 758 verify(mHalService, never()).unsubscribeProperty(anyInt()); in testRegisterUnregisterForOnChangeProperty() 763 verify(mHalService).unsubscribeProperty(HVAC_TEMP); in testRegisterUnregisterForOnChangeProperty() 991 verify(mHalService, never()).unsubscribeProperty(anyInt()); in testregisterListener_alreadySubscribedOptionFilteredOut() 1004 verify(mHalService).unsubscribeProperty(ON_CHANGE_ZONED_PROPERTY_ID); in testregisterListener_alreadySubscribedOptionFilteredOut() 1010 verify(mHalService).unsubscribeProperty(CONTINUOUS_ZONED_PROPERTY_ID); in testregisterListener_alreadySubscribedOptionFilteredOut() 1059 verify(mHalService, never()).unsubscribeProperty(anyInt()); in testRegisterListenerWithSubscription_unregisterListener() [all …]
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | VehicleHal.java | 862 unsubscribeProperty(service, property); in unsubscribePropertySafe() 873 public void unsubscribeProperty(HalServiceBase service, int property) in unsubscribeProperty() method in VehicleHal
|
D | PropertyHalService.java | 1234 public void unsubscribeProperty(int mgrPropId) throws ServiceSpecificException { in unsubscribeProperty() method in PropertyHalService 1436 mVehicleHal.unsubscribeProperty(this, halPropId); in updateSubscriptionRateLocked()
|
/packages/services/Car/service/src/com/android/car/ |
D | CarPropertyService.java | 548 mPropertyHalService.unsubscribeProperty(propertyIdsToUnsubscribe.get(i)); in applyStagedChangesLocked()
|