Home
last modified time | relevance | path

Searched refs:IsIfaceActive (Results 1 - 21 of 21) sorted by relevance

/foundation/communication/netmanager_ext/frameworks/js/napi/ethernet/
H A Dethernet_module.cpp65 napi_value IsIfaceActive(napi_env env, napi_callback_info info) in IsIfaceActive() function
103 DECLARE_NAPI_FUNCTION(IS_IFACE, IsIfaceActive), in DeclareEthernetInterface()
H A Dethernet_exec.cpp133 DelayedSingleton<EthernetClient>::GetInstance()->IsIfaceActive(context->iface_, context->ifActivate_); in ExecIsIfaceActive()
/foundation/communication/netmanager_ext/interfaces/innerkits/ethernetclient/include/proxy/
H A Di_ethernet_service.h41 virtual int32_t IsIfaceActive(const std::string &iface, int32_t &activeStatus) = 0;
H A Dethernet_service_proxy.h35 int32_t IsIfaceActive(const std::string &iface, int32_t &activeStatus) override;
/foundation/communication/netmanager_ext/frameworks/native/ethernetclient/src/
H A Dethernet_client.cpp73 int32_t EthernetClient::IsIfaceActive(const std::string &iface, int32_t &activeStatus) in IsIfaceActive() function in OHOS::NetManagerStandard::EthernetClient
80 return proxy->IsIfaceActive(iface, activeStatus); in IsIfaceActive()
/foundation/communication/netmanager_ext/interfaces/innerkits/ethernetclient/include/
H A Dethernet_client.h73 int32_t IsIfaceActive(const std::string &iface, int32_t &activeStatus);
/foundation/communication/netmanager_ext/test/ethernetmanager/unittest/ethernet_manager_test/
H A Dethernet_manager_test.cpp184 (void)DelayedSingleton<EthernetClient>::GetInstance()->IsIfaceActive(iface, activeStatus); in CheckIfaceUp()
273 * @tc.desc: Test EthernetManager IsIfaceActive.
283 int32_t ret = DelayedSingleton<EthernetClient>::GetInstance()->IsIfaceActive(DEV_NAME, activeStatus); in HWTEST_F()
290 * @tc.desc: Test EthernetManager IsIfaceActive.
300 int32_t ret = DelayedSingleton<EthernetClient>::GetInstance()->IsIfaceActive("eth3", activeStatus); in HWTEST_F()
664 int32_t ret = DelayedSingleton<EthernetClient>::GetInstance()->IsIfaceActive(DEV_NAME, activeStatus); in HWTEST_F()
672 int32_t ret = DelayedSingleton<EthernetClient>::GetInstance()->IsIfaceActive(DEV_NAME, activeStatus); in HWTEST_F()
680 int32_t ret = DelayedSingleton<EthernetClient>::GetInstance()->IsIfaceActive(DEV_NAME, activeStatus); in HWTEST_F()
821 int32_t ret = ethernetManagement.IsIfaceActive(DEV_NAME, activeStatus); in HWTEST_F()
1002 ret = ethernetManagement.IsIfaceActive(IFAC in HWTEST_F()
[all...]
H A Dethernet_service_test.cpp358 result = ethernetService.IsIfaceActive(iface, activeStatus); in HWTEST_F()
408 result = ethernetService.IsIfaceActive(iface, activeStatus); in HWTEST_F()
461 result = ethernetService.IsIfaceActive(iface, activeStatus); in HWTEST_F()
475 int32_t result = ethernetService.IsIfaceActive(iface, activeStatus); in HWTEST_F()
H A Dethernet_service_proxy_test.cpp154 int32_t ret = ethernetServiceProxy.IsIfaceActive(ifcaeName, activeStatus); in HWTEST_F()
H A Dethernet_service_stub_test.cpp51 int32_t IsIfaceActive(const std::string &iface, int32_t &activeStatus) override
/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_add_test/
H A Dethernet_service_test.cpp358 result = ethernetService.IsIfaceActive(iface, activeStatus); in HWTEST_F()
408 result = ethernetService.IsIfaceActive(iface, activeStatus); in HWTEST_F()
461 result = ethernetService.IsIfaceActive(iface, activeStatus); in HWTEST_F()
475 int32_t result = ethernetService.IsIfaceActive(iface, activeStatus); in HWTEST_F()
H A Dethernet_manager_test.cpp184 (void)DelayedSingleton<EthernetClient>::GetInstance()->IsIfaceActive(iface, activeStatus); in CheckIfaceUp()
273 * @tc.desc: Test EthernetManager IsIfaceActive.
283 int32_t ret = DelayedSingleton<EthernetClient>::GetInstance()->IsIfaceActive(DEV_NAME, activeStatus); in HWTEST_F()
290 * @tc.desc: Test EthernetManager IsIfaceActive.
300 int32_t ret = DelayedSingleton<EthernetClient>::GetInstance()->IsIfaceActive("eth3", activeStatus); in HWTEST_F()
H A Dethernet_service_proxy_test.cpp154 int32_t ret = ethernetServiceProxy.IsIfaceActive(ifcaeName, activeStatus); in HWTEST_F()
H A Dethernet_service_stub_test.cpp51 int32_t IsIfaceActive(const std::string &iface, int32_t &activeStatus) override
/foundation/communication/netmanager_ext/services/ethernetmanager/include/
H A Dethernet_service.h72 int32_t IsIfaceActive(const std::string &iface, int32_t &activeStatus) override;
H A Dethernet_management.h71 int32_t IsIfaceActive(const std::string &iface, int32_t &activeStatus);
/foundation/communication/netmanager_ext/services/ethernetmanager/src/
H A Dethernet_service.cpp244 int32_t EthernetService::IsIfaceActive(const std::string &iface, int32_t &activeStatus) in IsIfaceActive() function in OHOS::NetManagerStandard::EthernetService
252 NETMGR_EXT_LOG_E("EthernetService IsIfaceActive no js permission"); in IsIfaceActive()
256 return ethManagement_.IsIfaceActive(iface, activeStatus); in IsIfaceActive()
H A Dethernet_management.cpp356 int32_t EthernetManagement::IsIfaceActive(const std::string &iface, int32_t &activeStatus) in IsIfaceActive() function in OHOS::NetManagerStandard::EthernetManagement
/foundation/communication/netmanager_ext/frameworks/native/ethernetclient/src/proxy/
H A Dethernet_service_proxy.cpp137 int32_t EthernetServiceProxy::IsIfaceActive(const std::string &iface, int32_t &activeStatus) in IsIfaceActive() function in OHOS::NetManagerStandard::EthernetServiceProxy
/foundation/communication/netmanager_ext/services/ethernetmanager/src/stub/
H A Dethernet_service_stub.cpp156 int32_t ret = IsIfaceActive(iface, activeStatus); in OnIsIfaceActive()
/foundation/communication/netmanager_ext/test/ethernetmanager/fuzztest/ethernetclient_fuzzer/
H A Dethernet_client_fuzzer.cpp361 ethernetManagement->IsIfaceActive(iface, activeStatus); in EthernetManagementFuzzTest()

Completed in 14 milliseconds