Home
last modified time | relevance | path

Searched refs:newSensors (Results 1 – 11 of 11) sorted by relevance

/openbmc/telemetry/src/
H A Don_change_threshold.cpp22 void OnChangeThreshold::updateSensors(Sensors newSensors) in updateSensors() argument
26 for (const auto& sensor : newSensors) in updateSensors()
51 sensors = std::move(newSensors); in updateSensors()
H A Ddiscrete_threshold.cpp32 void DiscreteThreshold::updateSensors(Sensors newSensors) in updateSensors() argument
34 ThresholdOperations::updateSensors(this, std::move(newSensors)); in updateSensors()
H A Dnumeric_threshold.cpp27 void NumericThreshold::updateSensors(Sensors newSensors) in updateSensors() argument
29 ThresholdOperations::updateSensors(this, std::move(newSensors)); in updateSensors()
H A Dtrigger_factory.cpp257 Sensors newSensors; in updateSensors() local
268 newSensors.emplace_back(*existing); in updateSensors()
277 newSensors.emplace_back(sensorCache.makeSensor<Sensor>( in updateSensors()
281 currentSensors = std::move(newSensors); in updateSensors()
H A Don_change_threshold.hpp32 void updateSensors(Sensors newSensors) override;
H A Dnumeric_threshold.hpp38 void updateSensors(Sensors newSensors) override;
H A Ddiscrete_threshold.hpp38 void updateSensors(Sensors newSensors) override;
/openbmc/telemetry/src/utils/
H A Dthreshold_operations.hpp33 static void updateSensors(ThresholdType* thresholdPtr, Sensors newSensors) in updateSensors()
39 for (const auto& sensor : newSensors) in updateSensors()
/openbmc/telemetry/src/interfaces/
H A Dthreshold.hpp16 virtual void updateSensors(Sensors newSensors) = 0;
/openbmc/telemetry/tests/src/mocks/
H A Dthreshold_mock.hpp21 MOCK_METHOD(void, updateSensors, (Sensors newSensors), (override));
/openbmc/telemetry/tests/src/
H A Dtest_trigger.cpp303 SensorsInfo newSensors( in TEST_F() local
305 EXPECT_THAT(setProperty(sut->getPath(), "Sensors", newSensors), in TEST_F()