Home
last modified time | relevance | path

Searched refs:StartDhcpClient (Results 1 - 25 of 45) sorted by relevance

12

/foundation/communication/dhcp/frameworks/native/src/
H A Ddhcp_client_impl.cpp128 ErrCode DhcpClientImpl::StartDhcpClient(const std::string& ifname, bool bIpv6) in StartDhcpClient() function in OHOS::DHCP::DhcpClientImpl
132 return client_->StartDhcpClient(ifname, bIpv6); in StartDhcpClient()
H A Ddhcp_client_impl.h39 ErrCode StartDhcpClient(const std::string& ifname, bool bIpv6) override;
H A Ddhcp_client_proxy.h50 ErrCode StartDhcpClient(const std::string& ifname, bool bIpv6) override;
H A Ddhcp_client_proxy_lite.cpp137 ErrCode DhcpClientProxy::StartDhcpClient(const std::string& ifname, bool bIpv6) in StartDhcpClient() function in OHOS::DHCP::DhcpClientProxy
171 DHCP_LOGI("StartDhcpClient ok, exception:%{public}d", owner.exception); in StartDhcpClient()
H A Ddhcp_client_proxy.cpp140 ErrCode DhcpClientProxy::StartDhcpClient(const std::string& ifname, bool bIpv6) in StartDhcpClient() function in OHOS::DHCP::DhcpClientProxy
142 DHCP_LOGI("DhcpClientProxy enter StartDhcpClient mRemoteDied:%{public}d", mRemoteDied); in StartDhcpClient()
171 DHCP_LOGI("StartDhcpClient ok, exception:%{public}d", exception); in StartDhcpClient()
/foundation/communication/dhcp/interfaces/inner_api/
H A Ddhcp_client.h34 virtual ErrCode StartDhcpClient(const std::string& ifname, bool bIpv6) = 0;
/foundation/communication/dhcp/frameworks/native/interfaces/
H A Di_dhcp_client.h44 virtual ErrCode StartDhcpClient(const std::string& ifname, bool bIpv6) = 0;
/foundation/communication/dhcp/interfaces/kits/c/
H A Ddhcp_c_api.h49 DhcpErrorCode StartDhcpClient(const char *ifname, bool bIpv6);
/foundation/communication/dhcp/test/fuzztest/dhcpclient_fuzzer/
H A Ddhcpclient_fuzzer.cpp36 dhcpClient->StartDhcpClient(ifname, true); in DhcpClientFuzzerTest()
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_sta/Mock/
H A Dmock_dhcp_service.h26 MOCK_METHOD2(StartDhcpClient, DhcpErrorCode(const char *ifname, bool bIpv6));
H A Dmock_dhcp_service.cpp45 WIFI_LOGI("SUN MockDhcpService::StartDhcpClient"); in __wrap_StartDhcpClient()
46 return MockDhcpService::GetInstance().StartDhcpClient(ifname, bIpv6); in __wrap_StartDhcpClient()
/foundation/communication/netmanager_ext/services/ethernetmanager/src/
H A Dethernet_dhcp_controller.cpp67 if (StartDhcpClient(iface.c_str(), bIpv6) != DHCP_SUCCESS) { in StartClient()
68 NETMGR_EXT_LOG_E("StartDhcpClient failed."); in StartClient()
H A Dethernet_management.cpp165 StartDhcpClient(dev, devState); in UpdateInterfaceState()
274 StartDhcpClient(iface, fit->second); in UpdateDevInterfaceCfg()
460 void EthernetManagement::StartDhcpClient(const std::string &dev, sptr<DevInterfaceState> &devState) in StartDhcpClient() function in OHOS::NetManagerStandard::EthernetManagement
462 NETMGR_EXT_LOG_D("EthernetManagement StartDhcpClient[%{public}s]", dev.c_str()); in StartDhcpClient()
/foundation/communication/dhcp/services/dhcp_client/include/
H A Ddhcp_client_service_impl.h64 ErrCode StartDhcpClient(const std::string& ifname, bool bIpv6) override;
/foundation/communication/netmanager_ext/services/ethernetmanager/include/
H A Dethernet_management.h85 void StartDhcpClient(const std::string &dev, sptr<DevInterfaceState> &devState);
/foundation/communication/dhcp/frameworks/native/c_adapter/src/
H A Ddhcp_c_service.cpp77 NO_SANITIZE("cfi") DhcpErrorCode StartDhcpClient(const char *ifname, bool bIpv6) in StartDhcpClient() function
81 return GetCErrorCode(dhcpClientPtr->StartDhcpClient(ifname, bIpv6)); in StartDhcpClient()
/foundation/communication/netmanager_base/services/netmanagernative/src/
H A Ddhcp_controller.cpp91 NETNATIVE_LOGI("DhcpController StartDhcpClient iface[%{public}s] ipv6[%{public}d]", iface.c_str(), bIpv6); in StartClient()
92 if (StartDhcpClient(iface.c_str(), bIpv6) != DHCP_SUCCESS) { in StartClient()
/foundation/communication/netmanager_base/services/netsyscontroller/include/
H A Dmock_netsys_native_client.h72 constexpr const char *MOCK_STARTDHCPCLIENT_API = "StartDhcpClient";
439 int32_t StartDhcpClient(const std::string &iface, bool bIpv6);
/foundation/communication/dhcp/services/dhcp_client/src/
H A Ddhcp_client_stub.cpp145 ErrCode ret = StartDhcpClient(ifname, bIpv6); in OnStartDhcpClient()
H A Ddhcp_client_stub_lite.cpp135 ret = StartDhcpClient(ifname, bIpv6); in OnStartDhcpClient()
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/
H A Dmock_netsys_native_client_test.cpp232 ret = nativeClient_.StartDhcpClient(iface, false); in HWTEST_F()
/foundation/communication/dhcp/test/unittest/services/dhcp_client/
H A Ddhcp_client_service_impl_test.cpp58 EXPECT_EQ(DHCP_E_SUCCESS, dhcpClientImpl->StartDhcpClient(ifname, bIpv6)); in HWTEST_F()
/foundation/communication/netmanager_base/services/netsyscontroller/src/
H A Dnetsys_controller_service_impl.cpp565 int32_t NetsysControllerServiceImpl::StartDhcpClient(const std::string &iface, bool bIpv6) in StartDhcpClient() function in OHOS::NetManagerStandard::NetsysControllerServiceImpl
567 NETMGR_LOG_D("StartDhcpClient"); in StartDhcpClient()
569 return mockNetsysClient_.StartDhcpClient(iface, bIpv6); in StartDhcpClient()
571 return netsysClient_.StartDhcpClient(iface, bIpv6); in StartDhcpClient()
/foundation/communication/netmanager_base/interfaces/innerkits/netmanagernative/include/
H A Di_netsys_service.h121 virtual int32_t StartDhcpClient(const std::string &iface, bool bIpv6) = 0;
/foundation/communication/netmanager_base/services/netmanagernative/include/
H A Dnetsys_native_service.h111 int32_t StartDhcpClient(const std::string &iface, bool bIpv6) override;

Completed in 11 milliseconds

12