/foundation/communication/netmanager_base/services/netpolicymanager/src/firewall_rule/ |
H A D | firewall_rule.cpp | 90 netsys_->FirewallSetUidsAllowedListChain(chainType_, allowedList_); in SetAllowedList() 97 netsys_->FirewallSetUidsAllowedListChain(chainType_, allowedList_); in ClearAllowedList() 142 netsys_->FirewallSetUidsAllowedListChain(chainType_, deniedList_); in ClearDeniedList() 163 netsys_->FirewallSetUidsAllowedListChain(chainType_, allowedList_); in RemoveFromAllowedList()
|
/foundation/communication/netmanager_base/test/netmanagernative/unittest/firewall_manager_test/ |
H A D | firewall_manager_test.cpp | 219 * @tc.desc: Test FirewallManager FirewallSetUidsAllowedListChain. 228 NetsysController::GetInstance().FirewallSetUidsAllowedListChain(ChainType::CHAIN_OHFW_DOZABLE, uids); in HWTEST_F() 234 * @tc.desc: Test FirewallManager FirewallSetUidsAllowedListChain. 244 NetsysController::GetInstance().FirewallSetUidsAllowedListChain(ChainType::CHAIN_OHFW_DOZABLE, uids); in HWTEST_F() 250 * @tc.desc: Test FirewallManager FirewallSetUidsAllowedListChain. 260 NetsysController::GetInstance().FirewallSetUidsAllowedListChain(ChainType::CHAIN_OHFW_UNDOZABLE, uids); in HWTEST_F()
|
/foundation/communication/netmanager_base/services/netpolicymanager/src/common/ |
H A D | netsys_policy_wrapper.cpp | 97 int32_t NetsysPolicyWrapper::FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsAllowedListChain() function in OHOS::NetManagerStandard::NetsysPolicyWrapper 99 auto netsysReturnValue = NetsysController::GetInstance().FirewallSetUidsAllowedListChain(chain, uids); in FirewallSetUidsAllowedListChain()
|
/foundation/communication/netmanager_base/services/netpolicymanager/include/ |
H A D | netsys_policy_wrapper.h | 42 int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids);
|
/foundation/communication/netmanager_base/test/netpolicymanager/unittest/net_policy_manager_test/ |
H A D | ut_netsys_policy_wrapper.cpp | 115 auto ret = instance_->FirewallSetUidsAllowedListChain(chain, uids); in HWTEST_F()
|
/foundation/communication/netmanager_base/interfaces/innerkits/netmanagernative/include/ |
H A D | i_netsys_service.h | 138 virtual int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) = 0;
|
H A D | netsys_native_service_proxy.h | 100 int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override;
|
/foundation/communication/netmanager_base/services/netmanagernative/include/ |
H A D | netsys_native_service.h | 127 int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override;
|
/foundation/communication/netmanager_base/services/netmanagernative/include/netsys/ |
H A D | net_manager_native.h | 127 int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids);
|
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_distributed_test/ |
H A D | netsys_native_service_stub_test.cpp | 346 int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override
|
/foundation/communication/netmanager_base/services/netsyscontroller/include/ |
H A D | netsys_controller_service_impl.h | 644 int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override;
|
H A D | i_netsys_controller_service.h | 673 virtual int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) = 0;
|
H A D | netsys_controller.h | 659 int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids);
|
H A D | netsys_native_client.h | 686 int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids);
|
/foundation/communication/netmanager_base/services/netsyscontroller/src/ |
H A D | netsys_controller.cpp | 1028 int32_t NetsysController::FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsAllowedListChain() function in OHOS::NetManagerStandard::NetsysController 1030 NETMGR_LOG_I("NetsysController::FirewallSetUidsAllowedListChain: chain=%{public}d", chain); in FirewallSetUidsAllowedListChain() 1037 return netsysService_->FirewallSetUidsAllowedListChain(chain, uids); in FirewallSetUidsAllowedListChain()
|
H A D | netsys_controller_service_impl.cpp | 652 int32_t NetsysControllerServiceImpl::FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsAllowedListChain() function in OHOS::NetManagerStandard::NetsysControllerServiceImpl 654 NETMGR_LOG_D("FirewallSetUidsAllowedListChain: chain=%{public}d", chain); in FirewallSetUidsAllowedListChain() 655 return netsysClient_.FirewallSetUidsAllowedListChain(chain, uids); in FirewallSetUidsAllowedListChain()
|
H A D | netsys_native_client.cpp | 1267 int32_t NetsysNativeClient::FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsAllowedListChain() function in OHOS::NetManagerStandard::NetsysNativeClient 1274 return proxy->FirewallSetUidsAllowedListChain(chain, uids); in FirewallSetUidsAllowedListChain()
|
/foundation/communication/netmanager_base/services/netmanagernative/src/ |
H A D | netsys_native_service.cpp | 591 int32_t NetsysNativeService::FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsAllowedListChain() function in OHOS::NetsysNative::NetsysNativeService 593 NETNATIVE_LOG_D("FirewallSetUidsAllowedListChain"); in FirewallSetUidsAllowedListChain() 594 return netsysService_->FirewallSetUidsAllowedListChain(chain, uids); in FirewallSetUidsAllowedListChain()
|
H A D | netsys_native_service_stub.cpp | 1258 int32_t result = FirewallSetUidsAllowedListChain(chain, uids); in CmdFirewallSetUidsAllowedListChain()
|
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/ |
H A D | netsys_native_client_test.cpp | 200 ret = nativeClient_.FirewallSetUidsAllowedListChain(CHAIN, uids); in HWTEST_F()
|
H A D | netsys_controller_test.cpp | 364 ret = NetsysController::GetInstance().FirewallSetUidsAllowedListChain(TEST_UID, uids); in HWTEST_F() 715 auto ret = instance_->FirewallSetUidsAllowedListChain(0, uids); in HWTEST_F()
|
H A D | netsys_native_service_test.cpp | 401 ret = instance_->FirewallSetUidsAllowedListChain(chain, uids); in HWTEST_F()
|
H A D | netsys_controller_service_impl_test.cpp | 520 ret = instance_->FirewallSetUidsAllowedListChain(chain, uidsParam); in HWTEST_F()
|
H A D | netsys_native_service_stub_test.cpp | 368 int32_t FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override
|
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/ |
H A D | net_manager_native.cpp | 449 int32_t NetManagerNative::FirewallSetUidsAllowedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsAllowedListChain() function in OHOS::nmd::NetManagerNative
|