Home
last modified time | relevance | path

Searched refs:StopDhcpClient (Results 1 - 25 of 46) sorted by relevance

12

/foundation/communication/dhcp/frameworks/native/src/
H A Ddhcp_client_impl.cpp142 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 Ddhcp_client_impl.h41 ErrCode StopDhcpClient(const std::string& ifname, bool bIpv6) override;
H A Ddhcp_client_proxy.h52 ErrCode StopDhcpClient(const std::string& ifname, bool bIpv6) override;
H A Ddhcp_client_proxy_lite.cpp214 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 Ddhcp_client_proxy.cpp211 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 Ddhcp_client.h36 virtual ErrCode StopDhcpClient(const std::string& ifname, bool bIpv6) = 0;
/foundation/communication/dhcp/frameworks/native/interfaces/
H A Di_dhcp_client.h46 virtual ErrCode StopDhcpClient(const std::string& ifname, bool bIpv6) = 0;
/foundation/communication/dhcp/interfaces/kits/c/
H A Ddhcp_c_api.h65 DhcpErrorCode StopDhcpClient(const char *ifname, bool bIpv6);
/foundation/communication/dhcp/test/fuzztest/dhcpclient_fuzzer/
H A Ddhcpclient_fuzzer.cpp37 dhcpClient->StopDhcpClient(ifname, true); in DhcpClientFuzzerTest()
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_sta/Mock/
H A Dmock_dhcp_service.h27 MOCK_METHOD2(StopDhcpClient, DhcpErrorCode(const char *ifname, bool bIpv6));
H A Dmock_dhcp_service.cpp52 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 Dethernet_dhcp_controller.cpp75 if (StopDhcpClient(iface.c_str(), bIpv6) != DHCP_SUCCESS) { in StopClient()
76 NETMGR_EXT_LOG_E("StopDhcpClient failed."); in StopClient()
H A Dethernet_management.cpp175 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 Ddhcp_message_sim.h87 int StopDhcpClient(DhcpClientContext *ctx);
/foundation/communication/dhcp/services/dhcp_client/include/
H A Ddhcp_client_service_impl.h66 ErrCode StopDhcpClient(const std::string& ifname, bool bIpv6) override;
/foundation/communication/netmanager_ext/services/ethernetmanager/include/
H A Dethernet_management.h86 void StopDhcpClient(const std::string &dev, sptr<DevInterfaceState> &devState);
/foundation/communication/dhcp/frameworks/native/c_adapter/src/
H A Ddhcp_c_service.cpp94 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 Ddhcp_controller.cpp99 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 Dmock_netsys_native_client.h73 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 Ddhcp_client_stub.cpp168 ErrCode ret = StopDhcpClient(ifname, bIpv6); in OnStopDhcpClient()
H A Ddhcp_client_stub_lite.cpp184 ret = StopDhcpClient(ifname, bIpv6); in OnStopDhcpClient()
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/
H A Dmock_netsys_native_client_test.cpp235 ret = nativeClient_.StopDhcpClient(iface, false); in HWTEST_F()
/foundation/communication/dhcp/test/unittest/services/dhcp_client/
H A Ddhcp_client_service_impl_test.cpp60 EXPECT_EQ(DHCP_E_SUCCESS, dhcpClientImpl->StopDhcpClient(ifname, bIpv6)); in HWTEST_F()
/foundation/communication/netmanager_base/services/netsyscontroller/src/
H A Dnetsys_controller_service_impl.cpp574 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 Di_netsys_service.h122 virtual int32_t StopDhcpClient(const std::string &iface, bool bIpv6) = 0;

Completed in 11 milliseconds

12