Home
last modified time | relevance | path

Searched refs:xmlType (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/drivers/peripheral/thermal/interfaces/hdi_service/src/
H A Dthermal_hdf_config.cpp187 xmlChar* xmlType = xmlGetProp(node, BAD_CAST"type"); in ParsePollingSubNode() local
188 if (xmlType != nullptr) { in ParsePollingSubNode()
189 tn.type = std::string(reinterpret_cast<char*>(xmlType)); in ParsePollingSubNode()
190 xmlFree(xmlType); in ParsePollingSubNode()
261 xmlChar* xmlType = xmlGetProp(node, BAD_CAST"type"); in GetThermalZoneNodeInfo() local
262 if (xmlType != nullptr) { in GetThermalZoneNodeInfo()
263 tz.type = std::string(reinterpret_cast<char*>(xmlType)); in GetThermalZoneNodeInfo()
264 xmlFree(xmlType); in GetThermalZoneNodeInfo()
306 xmlChar* xmlType = xmlGetProp(node, BAD_CAST"type"); in ParseIsolateSubNode() local
307 if (xmlType != nullptr) { in ParseIsolateSubNode()
[all …]
/ohos5.0/base/powermgr/thermal_manager/application/protector/src/policy/
H A Dthermal_kernel_config_file.cpp99 xmlChar* xmlType = xmlGetProp(cur, BAD_CAST"type"); in ParseControlNode() local
100 if (xmlType != nullptr) { in ParseControlNode()
101 type = reinterpret_cast<char*>(xmlType); in ParseControlNode()
102 xmlFree(xmlType); in ParseControlNode()