Searched defs:aIPAddress (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Main/src-server/
H A DHostNetworkInterfaceImpl.cpp296 * @param aIPAddress Address name
298 HRESULT HostNetworkInterface::getIPAddress(com::Utf8Str &aIPAddress) argument
309 aIPAddress = addr;
436 HRESULT HostNetworkInterface::enableStaticIPConfig(const com::Utf8Str &aIPAddress, argument
442 if (aIPAddress.isEmpty())
464 ip = inet_addr(aIPAddress.c_str());
482 Bstr(aIPAddress).raw())))
H A DDHCPServerImpl.cpp216 HRESULT DHCPServer::getIPAddress(com::Utf8Str &aIPAddress) argument
220 aIPAddress = Utf8Str(m->IPAddress);
234 HRESULT DHCPServer::getLowerIP(com::Utf8Str &aIPAddress) argument
238 aIPAddress = Utf8Str(m->lowerIP);
243 HRESULT DHCPServer::getUpperIP(com::Utf8Str &aIPAddress) argument
247 aIPAddress = Utf8Str(m->upperIP);
252 HRESULT DHCPServer::setConfiguration(const com::Utf8Str &aIPAddress, argument
257 AssertReturn(!aIPAddress.isEmpty(), E_INVALIDARG);
263 m->IPAddress = aIPAddress;

Completed in 44 milliseconds