Home
last modified time | relevance | path

Searched refs:FirewallSetUidsDeniedListChain (Results 1 - 25 of 26) sorted by relevance

12

/foundation/communication/netmanager_base/test/netmanagernative/unittest/firewall_manager_test/
H A Dfirewall_manager_test.cpp266 * @tc.desc: Test FirewallManager FirewallSetUidsDeniedListChain.
275 NetsysController::GetInstance().FirewallSetUidsDeniedListChain(ChainType::CHAIN_OHFW_UNDOZABLE, uids); in HWTEST_F()
281 * @tc.desc: Test FirewallManager FirewallSetUidsDeniedListChain.
291 NetsysController::GetInstance().FirewallSetUidsDeniedListChain(ChainType::CHAIN_OHFW_UNDOZABLE, uids); in HWTEST_F()
297 * @tc.desc: Test FirewallManager FirewallSetUidsDeniedListChain.
306 int32_t ret = NetsysController::GetInstance().FirewallSetUidsDeniedListChain(ChainType::CHAIN_OHFW_DOZABLE, uids); in HWTEST_F()
/foundation/communication/netmanager_base/services/netpolicymanager/src/firewall_rule/
H A Dfirewall_rule.cpp136 netsys_->FirewallSetUidsDeniedListChain(chainType_, deniedList_); in SetDeniedList()
179 netsys_->FirewallSetUidsDeniedListChain(chainType_, deniedList_); in RemoveFromDeniedList()
/foundation/communication/netmanager_base/services/netpolicymanager/src/common/
H A Dnetsys_policy_wrapper.cpp105 int32_t NetsysPolicyWrapper::FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsDeniedListChain() function in OHOS::NetManagerStandard::NetsysPolicyWrapper
107 auto netsysReturnValue = NetsysController::GetInstance().FirewallSetUidsDeniedListChain(chain, uids); in FirewallSetUidsDeniedListChain()
/foundation/communication/netmanager_base/services/netpolicymanager/include/
H A Dnetsys_policy_wrapper.h43 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids);
/foundation/communication/netmanager_base/test/netpolicymanager/unittest/net_policy_manager_test/
H A Dut_netsys_policy_wrapper.cpp123 auto ret = instance_->FirewallSetUidsDeniedListChain(chain, uids); in HWTEST_F()
/foundation/communication/netmanager_base/interfaces/innerkits/netmanagernative/include/
H A Di_netsys_service.h139 virtual int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) = 0;
H A Dnetsys_native_service_proxy.h101 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override;
/foundation/communication/netmanager_base/services/netmanagernative/include/
H A Dnetsys_native_service.h121 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override;
/foundation/communication/netmanager_base/services/netmanagernative/include/netsys/
H A Dnet_manager_native.h128 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids);
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_distributed_test/
H A Dnetsys_native_service_stub_test.cpp351 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override
/foundation/communication/netmanager_base/services/netsyscontroller/include/
H A Dnetsys_controller_service_impl.h654 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override;
H A Di_netsys_controller_service.h683 virtual int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) = 0;
H A Dnetsys_controller.h669 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids);
H A Dnetsys_native_client.h696 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids);
/foundation/communication/netmanager_base/services/netsyscontroller/src/
H A Dnetsys_controller.cpp1040 int32_t NetsysController::FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsDeniedListChain() function in OHOS::NetManagerStandard::NetsysController
1042 NETMGR_LOG_I("NetsysController::FirewallSetUidsDeniedListChain: chain=%{public}d", chain); in FirewallSetUidsDeniedListChain()
1049 return netsysService_->FirewallSetUidsDeniedListChain(chain, uids); in FirewallSetUidsDeniedListChain()
H A Dnetsys_controller_service_impl.cpp658 int32_t NetsysControllerServiceImpl::FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsDeniedListChain() function in OHOS::NetManagerStandard::NetsysControllerServiceImpl
660 NETMGR_LOG_D("FirewallSetUidsDeniedListChain: chain=%{public}d", chain); in FirewallSetUidsDeniedListChain()
661 return netsysClient_.FirewallSetUidsDeniedListChain(chain, uids); in FirewallSetUidsDeniedListChain()
H A Dnetsys_native_client.cpp1277 int32_t NetsysNativeClient::FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsDeniedListChain() function in OHOS::NetManagerStandard::NetsysNativeClient
1284 return proxy->FirewallSetUidsDeniedListChain(chain, uids); in FirewallSetUidsDeniedListChain()
/foundation/communication/netmanager_base/services/netmanagernative/src/
H A Dnetsys_native_service.cpp597 int32_t NetsysNativeService::FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsDeniedListChain() function in OHOS::NetsysNative::NetsysNativeService
599 NETNATIVE_LOG_D("FirewallSetUidsDeniedListChain"); in FirewallSetUidsDeniedListChain()
600 return netsysService_->FirewallSetUidsDeniedListChain(chain, uids); in FirewallSetUidsDeniedListChain()
H A Dnetsys_native_service_stub.cpp1274 int32_t result = FirewallSetUidsDeniedListChain(chain, uids); in CmdFirewallSetUidsDeniedListChain()
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/
H A Dnetsys_native_client_test.cpp202 ret = nativeClient_.FirewallSetUidsDeniedListChain(CHAIN, uids); in HWTEST_F()
H A Dnetsys_controller_test.cpp366 ret = NetsysController::GetInstance().FirewallSetUidsDeniedListChain(TEST_UID, uids); in HWTEST_F()
718 ret = instance_->FirewallSetUidsDeniedListChain(0, uids); in HWTEST_F()
H A Dnetsys_native_service_test.cpp404 ret = instance_->FirewallSetUidsDeniedListChain(chain, uids); in HWTEST_F()
H A Dnetsys_controller_service_impl_test.cpp523 ret = instance_->FirewallSetUidsDeniedListChain(chain, uidsParam); in HWTEST_F()
H A Dnetsys_native_service_stub_test.cpp373 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/
H A Dnet_manager_native.cpp455 int32_t NetManagerNative::FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsDeniedListChain() function in OHOS::nmd::NetManagerNative

Completed in 41 milliseconds

12