Lines Matching +full:double +full:- +full:channel

8 //      http://www.apache.org/licenses/LICENSE-2.0
30 #include <phosphor-logging/lg2.hpp>
55 static constexpr double ipmbMaxReading = 0xFF;
56 static constexpr double ipmbMinReading = 0;
145 self->name); in initCmdCb()
155 dbusConnection->async_method_call( in runInitCmd()
160 "xyz.openbmc_project.Ipmi.Channel.Ipmb", in runInitCmd()
161 "/xyz/openbmc_project/Ipmi/Channel/Ipmb", "org.openbmc.Ipmb", in runInitCmd()
257 // https://amperecomputing.com/customer-connect/products/altra-family-software---firmware in loadDefaults()
298 const std::vector<uint8_t>& data, double& resp, in processReading()
412 constexpr const size_t shift = 16 - 11; // 11bit into 16bit in processReading()
451 double value = 0; in ipmbRequestCompletionCb()
466 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast) in ipmbRequestCompletionCb()
469 rawValue = static_cast<double>(rawData); in ipmbRequestCompletionCb()
491 self->sendIpmbRequest(); in read()
499 updateValue(std::numeric_limits<double>::quiet_NaN()); in sendIpmbRequest()
503 dbusConnection->async_method_call( in sendIpmbRequest()
511 self->ipmbRequestCompletionCb(ec, response); in sendIpmbRequest()
513 "xyz.openbmc_project.Ipmi.Channel.Ipmb", in sendIpmbRequest()
514 "/xyz/openbmc_project/Ipmi/Channel/Ipmb", "org.openbmc.Ipmb", in sendIpmbRequest()
581 scaleVal = std::visit(VariantToDoubleVisitor(), findScaleVal->second); in parseConfigValues()
587 offsetVal = std::visit(VariantToDoubleVisitor(), findOffsetVal->second); in parseConfigValues()
604 dbusConnection->async_method_call( in createSensors()
639 VariantToUnsignedIntVisitor(), findSmType->second); in createSensors()
649 findBusType->second); in createSensors()
660 findType->second); in createSensors()
670 sensor->parseConfigValues(cfg); in createSensors()
671 if (!(sensor->sensorClassType(sensorClass))) in createSensors()
675 sensor->sensorSubType(sensorTypeName); in createSensors()
676 sensor->init(); in createSensors()
705 if ((sensorIt->second->configurationPath == removedPath) && in interfaceRemoved()