Lines Matching refs:zone
43 static std::string getControlPath(int64_t zone) in getControlPath() argument
45 return std::string(objectPath) + std::to_string(zone); in getControlPath()
48 static std::string getPidControlPath(int64_t zone, std::string pidname) in getPidControlPath() argument
50 return std::string(objectPath) + std::to_string(zone) + "/" + pidname; in getPidControlPath()
76 auto zone = std::make_shared<DbusPidZone>( in buildZones() local
82 std::cerr << "Zone Id: " << zone->getZoneID() << "\n"; in buildZones()
99 zone->addFanInput(i.name, i.missingIsAcceptable); in buildZones()
103 zone.get(), name, splitNames(inputs), info.pidInfo); in buildZones()
104 zone->addFanPID(std::move(pid)); in buildZones()
105 zone->addPidFailSafePercent(splitNames(inputs), in buildZones()
113 zone->addThermalInput(i.name, i.missingIsAcceptable); in buildZones()
117 zone.get(), name, inputs, info.setpoint, info.pidInfo, in buildZones()
120 zone->addThermalPID(std::move(pid)); in buildZones()
121 zone->addPidControlProcess( in buildZones()
124 zone->addPidFailSafePercent(splitNames(inputs), in buildZones()
132 zone->addThermalInput(i.name, i.missingIsAcceptable); in buildZones()
135 zone.get(), name, splitNames(inputs), info.stepwiseInfo); in buildZones()
136 zone->addThermalPID(std::move(stepwise)); in buildZones()
137 zone->addPidControlProcess( in buildZones()
140 zone->addPidFailSafePercent(splitNames(inputs), in buildZones()
161 zone->emit_object_added(); in buildZones()
162 zones[zoneId] = std::move(zone); in buildZones()