Home
last modified time | relevance | path

Searched refs:eventMode (Results 1 – 4 of 4) sorted by relevance

/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/src/
DVehiclePropertyStore.cpp111 VehiclePropertyStore::EventMode eventMode, in writeValue() argument
165 if (eventMode == EventMode::NEVER) { in writeValue()
180 if (eventMode == EventMode::ALWAYS || valueUpdated) { in writeValue()
190 void VehiclePropertyStore::refreshTimestamp(int32_t propId, int32_t areaId, EventMode eventMode) { in refreshTimestamp() argument
196 eventModeByPropIdAreaId[propIdAreaId] = eventMode; in refreshTimestamp()
211 for (const auto& [propIdAreaId, eventMode] : eventModeByPropIdAreaId) { in refreshTimestamps()
228 if (eventMode == EventMode::ALWAYS) { in refreshTimestamps()
/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/include/
DVehiclePropertyStore.h117 void refreshTimestamp(int32_t propId, int32_t areaId, EventMode eventMode) EXCLUDES(mLock);
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/hardware/include/
DFakeVehicleHardware.h148 VehiclePropertyStore::EventMode eventMode; member
296 void registerRefreshLocked(PropIdAreaId propIdAreaId, VehiclePropertyStore::EventMode eventMode,
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/hardware/src/
DFakeVehicleHardware.cpp2287 eventModeByPropIdAreaId[propIdAreaId] = refreshInfo.eventMode; in refreshTimestampForInterval()
2295 VehiclePropertyStore::EventMode eventMode, in registerRefreshLocked() argument
2303 .eventMode = eventMode, in registerRefreshLocked()
2363 auto eventMode = VehiclePropertyStore::EventMode::ALWAYS; in subscribePropIdAreaIdLocked() local
2366 eventMode = VehiclePropertyStore::EventMode::ON_VALUE_CHANGE; in subscribePropIdAreaIdLocked()
2369 registerRefreshLocked(propIdAreaId, eventMode, sampleRateHz); in subscribePropIdAreaIdLocked()