/foundation/communication/dhcp/frameworks/native/src/ |
H A D | dhcp_client_impl.cpp | 142 ErrCode DhcpClientImpl::StopDhcpClient(const std::string& ifname, bool bIpv6) in StopDhcpClient() function in OHOS::DHCP::DhcpClientImpl 146 return client_->StopDhcpClient(ifname, bIpv6); in StopDhcpClient()
|
H A D | dhcp_client_impl.h | 41 ErrCode StopDhcpClient(const std::string& ifname, bool bIpv6) override;
|
H A D | dhcp_client_proxy.h | 52 ErrCode StopDhcpClient(const std::string& ifname, bool bIpv6) override;
|
H A D | dhcp_client_proxy_lite.cpp | 214 ErrCode DhcpClientProxy::StopDhcpClient(const std::string& ifname, bool bIpv6) in StopDhcpClient() function in OHOS::DHCP::DhcpClientProxy 248 DHCP_LOGI("StopDhcpClient ok, exception:%{public}d", owner.exception); in StopDhcpClient()
|
H A D | dhcp_client_proxy.cpp | 211 ErrCode DhcpClientProxy::StopDhcpClient(const std::string& ifname, bool bIpv6) in StopDhcpClient() function in OHOS::DHCP::DhcpClientProxy 213 DHCP_LOGI("DhcpClientProxy enter StopDhcpClient mRemoteDied:%{public}d", mRemoteDied); in StopDhcpClient() 241 DHCP_LOGI("StopDhcpClient ok, exception:%{public}d", exception); in StopDhcpClient()
|
/foundation/communication/dhcp/interfaces/inner_api/ |
H A D | dhcp_client.h | 36 virtual ErrCode StopDhcpClient(const std::string& ifname, bool bIpv6) = 0;
|
/foundation/communication/dhcp/frameworks/native/interfaces/ |
H A D | i_dhcp_client.h | 46 virtual ErrCode StopDhcpClient(const std::string& ifname, bool bIpv6) = 0;
|
/foundation/communication/dhcp/interfaces/kits/c/ |
H A D | dhcp_c_api.h | 65 DhcpErrorCode StopDhcpClient(const char *ifname, bool bIpv6);
|
/foundation/communication/dhcp/test/fuzztest/dhcpclient_fuzzer/ |
H A D | dhcpclient_fuzzer.cpp | 37 dhcpClient->StopDhcpClient(ifname, true); in DhcpClientFuzzerTest()
|
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_sta/Mock/ |
H A D | mock_dhcp_service.h | 27 MOCK_METHOD2(StopDhcpClient, DhcpErrorCode(const char *ifname, bool bIpv6));
|
H A D | mock_dhcp_service.cpp | 52 WIFI_LOGI("SUN MockDhcpService::StopDhcpClient"); in __wrap_StopDhcpClient() 53 return MockDhcpService::GetInstance().StopDhcpClient(ifname, bIpv6); in __wrap_StopDhcpClient()
|
/foundation/communication/netmanager_ext/services/ethernetmanager/src/ |
H A D | ethernet_dhcp_controller.cpp | 75 if (StopDhcpClient(iface.c_str(), bIpv6) != DHCP_SUCCESS) { in StopClient() 76 NETMGR_EXT_LOG_E("StopDhcpClient failed."); in StopClient()
|
H A D | ethernet_management.cpp | 175 StopDhcpClient(dev, devState); in UpdateInterfaceState() 276 StopDhcpClient(iface, fit->second); in UpdateDevInterfaceCfg() 467 void EthernetManagement::StopDhcpClient(const std::string &dev, sptr<DevInterfaceState> &devState) in StopDhcpClient() function in OHOS::NetManagerStandard::EthernetManagement 469 NETMGR_EXT_LOG_D("EthernetManagement StopDhcpClient[%{public}s]", dev.c_str()); in StopDhcpClient()
|
/foundation/communication/dhcp/test/unittest/services/dhcp_server/unittest/ |
H A D | dhcp_message_sim.h | 87 int StopDhcpClient(DhcpClientContext *ctx);
|
/foundation/communication/dhcp/services/dhcp_client/include/ |
H A D | dhcp_client_service_impl.h | 66 ErrCode StopDhcpClient(const std::string& ifname, bool bIpv6) override;
|
/foundation/communication/netmanager_ext/services/ethernetmanager/include/ |
H A D | ethernet_management.h | 86 void StopDhcpClient(const std::string &dev, sptr<DevInterfaceState> &devState);
|
/foundation/communication/dhcp/frameworks/native/c_adapter/src/ |
H A D | dhcp_c_service.cpp | 94 NO_SANITIZE("cfi") DhcpErrorCode StopDhcpClient(const char *ifname, bool bIpv6) in StopDhcpClient() function 100 return GetCErrorCode(dhcpClientPtr->StopDhcpClient(ifname, bIpv6)); in StopDhcpClient()
|
/foundation/communication/netmanager_base/services/netmanagernative/src/ |
H A D | dhcp_controller.cpp | 99 NETNATIVE_LOGI("DhcpController StopDhcpClient iface[%{public}s] ipv6[%{public}d]", iface.c_str(), bIpv6); in StopClient() 100 if (StopDhcpClient(iface.c_str(), bIpv6) != DHCP_SUCCESS) { in StopClient()
|
/foundation/communication/netmanager_base/services/netsyscontroller/include/ |
H A D | mock_netsys_native_client.h | 73 constexpr const char *MOCK_STOPDHCPCLIENT_API = "StopDhcpClient"; 447 int32_t StopDhcpClient(const std::string &iface, bool bIpv6);
|
/foundation/communication/dhcp/services/dhcp_client/src/ |
H A D | dhcp_client_stub.cpp | 168 ErrCode ret = StopDhcpClient(ifname, bIpv6); in OnStopDhcpClient()
|
H A D | dhcp_client_stub_lite.cpp | 184 ret = StopDhcpClient(ifname, bIpv6); in OnStopDhcpClient()
|
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/ |
H A D | mock_netsys_native_client_test.cpp | 235 ret = nativeClient_.StopDhcpClient(iface, false); in HWTEST_F()
|
/foundation/communication/dhcp/test/unittest/services/dhcp_client/ |
H A D | dhcp_client_service_impl_test.cpp | 60 EXPECT_EQ(DHCP_E_SUCCESS, dhcpClientImpl->StopDhcpClient(ifname, bIpv6)); in HWTEST_F()
|
/foundation/communication/netmanager_base/services/netsyscontroller/src/ |
H A D | netsys_controller_service_impl.cpp | 574 int32_t NetsysControllerServiceImpl::StopDhcpClient(const std::string &iface, bool bIpv6) in StopDhcpClient() function in OHOS::NetManagerStandard::NetsysControllerServiceImpl 576 NETMGR_LOG_D("StopDhcpClient"); in StopDhcpClient() 578 return mockNetsysClient_.StopDhcpClient(iface, bIpv6); in StopDhcpClient() 580 return netsysClient_.StopDhcpClient(iface, bIpv6); in StopDhcpClient()
|
/foundation/communication/netmanager_base/interfaces/innerkits/netmanagernative/include/ |
H A D | i_netsys_service.h | 122 virtual int32_t StopDhcpClient(const std::string &iface, bool bIpv6) = 0;
|