Lines Matching defs:sensorPath

922         std::string sensorPath =
929 sensorPath.append(
934 sensorPath.append(
961 sensorPath.append(
976 sensorPath.append("proc" + std::to_string(occInstance) +
1068 auto existing = sensorData.find(sensorPath);
1089 sensorData[sensorPath] = tempValue;
1172 std::string sensorPath = OCC_SENSORS_ROOT + std::string("/power/");
1179 sensorPath.append(iter->second);
1197 sensorPath, "xyz.openbmc_project.Sensor.Value.Unit.Watts");
1200 sensorPath, tempValue * std::pow(10, -3) * std::pow(10, -3));
1203 sensorPath, true);
1205 if (existingSensors.find(sensorPath) == existingSensors.end())
1212 sensorPath,
1216 sensorPath, fTypeList);
1218 existingSensors[sensorPath] = id;
1250 std::string sensorPath = OCC_SENSORS_ROOT + std::string("/power/");
1274 sensorPath.append("chiplet" + std::to_string(id) + labelValue);
1304 sensorPath, "xyz.openbmc_project.Sensor.Value.Unit.Watts");
1306 dbus::OccDBusSensors::getOccDBus().setValue(sensorPath,
1310 sensorPath, true);
1312 if (existingSensors.find(sensorPath) == existingSensors.end())
1315 sensorPath, {"all_sensors"});
1318 existingSensors[sensorPath] = id;
1326 for (const auto& [sensorPath, occId] : existingSensors)
1331 sensorPath, std::numeric_limits<double>::quiet_NaN());
1334 sensorPath, true);
1342 for (const auto& [sensorPath, occId] : existingSensors)
1347 sensorPath, std::numeric_limits<double>::quiet_NaN());
1350 sensorPath, false);
1359 const fs::path sensorPath = occ->getHwmonPath();
1362 if (fs::exists(sensorPath))
1365 readTempSensors(sensorPath, id);
1367 readExtnSensors(sensorPath, id);
1372 readPowerSensors(sensorPath, id);
1382 "INST", id, "PATH", sensorPath);