Lines Matching refs:name

83         const std::string &name = sensors[i]["Name"].asString();  in ParseSensorInfo()  local
84 LOG(INFO) << "Sensor[" << i << "]'s Name: " << name; in ParseSensorInfo()
85 if (name.empty()) { in ParseSensorInfo()
92 auto result = sensors_name_parsed.insert(name); in ParseSensorInfo()
100 LOG(INFO) << "Sensor[" << name << "]'s Type: " << sensor_type_str; in ParseSensorInfo()
105 << "Sensor[" << name << "]'s Type: " << sensor_type_str; in ParseSensorInfo()
122 << "Sensor[" << name << "]'s HotThreshold count" << values.size(); in ParseSensorInfo()
132 << "Sensor[" << name << "]'s HotThreshold[j" << j in ParseSensorInfo()
139 LOG(INFO) << "Sensor[" << name << "]'s HotThreshold[" << j in ParseSensorInfo()
147 << "Sensor[" << name << "]'s HotHysteresis, default all to 0.0"; in ParseSensorInfo()
153 << "Sensor[" << name << "]'s HotHysteresis: " << hot_hysteresis[j]; in ParseSensorInfo()
157 LOG(INFO) << "Sensor[" << name << "]'s HotHysteresis[" << j in ParseSensorInfo()
165 << "Sensor[" << name << "]'s ColdThreshold, default all to NAN"; in ParseSensorInfo()
173 << "Sensor[" << name << "]'s ColdThreshold[j" << j in ParseSensorInfo()
180 LOG(INFO) << "Sensor[" << name << "]'s ColdThreshold[" << j in ParseSensorInfo()
188 << "Sensor[" << name << "]'s ColdHysteresis, default all to 0.0"; in ParseSensorInfo()
194 << "Sensor[" << name in ParseSensorInfo()
199 LOG(INFO) << "Sensor[" << name << "]'s ColdHysteresis[" << j in ParseSensorInfo()
206 LOG(INFO) << "Sensor[" << name << "]'s VrThreshold: " << vr_threshold; in ParseSensorInfo()
209 LOG(INFO) << "Sensor[" << name << "]'s Multiplier: " << multiplier; in ParseSensorInfo()
213 LOG(INFO) << "Failed to read Sensor[" << name << "]'s Monitor, set to 'false'"; in ParseSensorInfo()
217 LOG(INFO) << "Sensor[" << name << "]'s Monitor: " << std::boolalpha << is_monitor in ParseSensorInfo()
220 sensors_parsed[name] = { in ParseSensorInfo()
258 const std::string &name = cooling_devices[i]["Name"].asString(); in ParseCoolingDevice() local
259 LOG(INFO) << "CoolingDevice[" << i << "]'s Name: " << name; in ParseCoolingDevice()
260 if (name.empty()) { in ParseCoolingDevice()
267 auto result = cooling_devices_name_parsed.insert(name.data()); in ParseCoolingDevice()
275 LOG(INFO) << "CoolingDevice[" << name << "]'s Type: " << cooling_device_type_str; in ParseCoolingDevice()
280 << "CoolingDevice[" << name << "]'s Type: " << cooling_device_type_str; in ParseCoolingDevice()
285 cooling_devices_parsed[name] = cooling_device_type; in ParseCoolingDevice()