Home
last modified time | relevance | path

Searched refs:ImplementationType (Results 1 – 5 of 5) sorted by relevance

/openbmc/bmcweb/redfish-core/include/generated/enums/
H A Dmetric_definition.hpp20 enum class ImplementationType{ enum
63 NLOHMANN_JSON_SERIALIZE_ENUM(ImplementationType, {
64 {ImplementationType::Invalid, "Invalid"},
65 {ImplementationType::PhysicalSensor, "PhysicalSensor"},
66 {ImplementationType::Calculated, "Calculated"},
67 {ImplementationType::Synthesized, "Synthesized"},
68 {ImplementationType::DigitalMeter, "DigitalMeter"},
H A Dcontrol.hpp45 enum class ImplementationType{ enum
87 NLOHMANN_JSON_SERIALIZE_ENUM(ImplementationType, {
88 {ImplementationType::Invalid, "Invalid"},
89 {ImplementationType::Programmable, "Programmable"},
90 {ImplementationType::Direct, "Direct"},
91 {ImplementationType::Monitored, "Monitored"},
H A Dsensor.hpp80 enum class ImplementationType{ enum
164 NLOHMANN_JSON_SERIALIZE_ENUM(ImplementationType, {
165 {ImplementationType::Invalid, "Invalid"},
166 {ImplementationType::PhysicalSensor, "PhysicalSensor"},
167 {ImplementationType::Synthesized, "Synthesized"},
168 {ImplementationType::Reported, "Reported"},
/openbmc/bmcweb/redfish-core/include/utils/
H A Dsensor_utils.hpp568 inline sensor::ImplementationType dBusSensorImplementationToRedfish( in dBusSensorImplementationToRedfish()
572 "xyz.openbmc_project.Sensor.Type.ImplementationType.Physical") in dBusSensorImplementationToRedfish()
574 return sensor::ImplementationType::PhysicalSensor; in dBusSensorImplementationToRedfish()
577 "xyz.openbmc_project.Sensor.Type.ImplementationType.Synthesized") in dBusSensorImplementationToRedfish()
579 return sensor::ImplementationType::Synthesized; in dBusSensorImplementationToRedfish()
582 "xyz.openbmc_project.Sensor.Type.ImplementationType.Reported") in dBusSensorImplementationToRedfish()
584 return sensor::ImplementationType::Reported; in dBusSensorImplementationToRedfish()
587 return sensor::ImplementationType::Invalid; in dBusSensorImplementationToRedfish()
691 sensor::ImplementationType implementationOpt = in fillSensorIdentity()
693 if (implementationOpt != sensor::ImplementationType in fillSensorIdentity()
[all...]
/openbmc/bmcweb/test/redfish-core/include/utils/
H A Dsensor_utils_test.cpp373 sensor::ImplementationType::Reported); in TEST()