Searched defs:currentValue (Results 1 - 2 of 2) sorted by relevance

/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
H A DFakeValueGenerator.h42 float currentValue; // Should be in range (initialValue +/- dispersion). member in struct:android::hardware::automotive::vehicle::V2_0::impl::FakeValueGenerator::GeneratorCfg
44 float increment; // Value that we will be added to currentValue with each timer tick.
67 .currentValue = initialValue,
99 cfg.currentValue += cfg.increment;
100 if (cfg.currentValue > cfg.initialValue + cfg.dispersion) {
101 cfg.currentValue = cfg.initialValue - cfg.dispersion;
103 mOnHalEvent(propId, cfg.currentValue);
/hardware/interfaces/audio/2.0/vts/functional/
H A DAudioPrimaryHidlHalTest.cpp773 Property currentValue,
788 EXPECT_NE(std::find(capabilities.begin(), capabilities.end(), currentValue),
772 testCapabilityGetter(const string& name, IStream* stream, Property currentValue, CapabilityGetter capablityGetter, Getter getter, Setter setter) argument

Completed in 183 milliseconds