Lines Matching refs:fqdn
1278 inline void handleFqdnPatch(const std::string& ifaceId, const std::string& fqdn, in handleFqdnPatch() argument
1282 if (fqdn.length() > 255) in handleFqdnPatch()
1284 messages::propertyValueFormatError(asyncResp->res, fqdn, "FQDN"); in handleFqdnPatch()
1288 size_t pos = fqdn.find('.'); in handleFqdnPatch()
1291 messages::propertyValueFormatError(asyncResp->res, fqdn, "FQDN"); in handleFqdnPatch()
1297 domainname = (fqdn).substr(pos + 1); in handleFqdnPatch()
1298 hostname = (fqdn).substr(0, pos); in handleFqdnPatch()
1302 messages::propertyValueFormatError(asyncResp->res, fqdn, "FQDN"); in handleFqdnPatch()
1877 std::string fqdn = ethData.hostName; in parseInterfaceData() local
1880 fqdn += "." + ethData.domainnames[0]; in parseInterfaceData()
1882 jsonResponse["FQDN"] = fqdn; in parseInterfaceData()
2280 std::optional<std::string> fqdn; in requestEthernetInterfacesRoutes() local
2310 "FQDN", fqdn, // in requestEthernetInterfacesRoutes()
2334 fqdn = std::move(fqdn), macAddress = std::move(macAddress), in requestEthernetInterfacesRoutes()
2374 if (fqdn) in requestEthernetInterfacesRoutes()
2376 handleFqdnPatch(ifaceId, *fqdn, asyncResp); in requestEthernetInterfacesRoutes()