/foundation/communication/netmanager_base/test/netmanagernative/unittest/firewall_manager_test/ |
H A D | firewall_manager_test.cpp | 266 * @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 D | firewall_rule.cpp | 136 netsys_->FirewallSetUidsDeniedListChain(chainType_, deniedList_); in SetDeniedList() 179 netsys_->FirewallSetUidsDeniedListChain(chainType_, deniedList_); in RemoveFromDeniedList()
|
/foundation/communication/netmanager_base/services/netpolicymanager/src/common/ |
H A D | netsys_policy_wrapper.cpp | 105 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 D | netsys_policy_wrapper.h | 43 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 D | ut_netsys_policy_wrapper.cpp | 123 auto ret = instance_->FirewallSetUidsDeniedListChain(chain, uids); in HWTEST_F()
|
/foundation/communication/netmanager_base/interfaces/innerkits/netmanagernative/include/ |
H A D | i_netsys_service.h | 139 virtual int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) = 0;
|
H A D | netsys_native_service_proxy.h | 101 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override;
|
/foundation/communication/netmanager_base/services/netmanagernative/include/ |
H A D | netsys_native_service.h | 121 int32_t FirewallSetUidsDeniedListChain(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 | 128 int32_t FirewallSetUidsDeniedListChain(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 | 351 int32_t FirewallSetUidsDeniedListChain(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 | 654 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) override;
|
H A D | i_netsys_controller_service.h | 683 virtual int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) = 0;
|
H A D | netsys_controller.h | 669 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids);
|
H A D | netsys_native_client.h | 696 int32_t FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids);
|
/foundation/communication/netmanager_base/services/netsyscontroller/src/ |
H A D | netsys_controller.cpp | 1040 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 D | netsys_controller_service_impl.cpp | 658 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 D | netsys_native_client.cpp | 1277 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 D | netsys_native_service.cpp | 597 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 D | netsys_native_service_stub.cpp | 1274 int32_t result = FirewallSetUidsDeniedListChain(chain, uids); in CmdFirewallSetUidsDeniedListChain()
|
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/ |
H A D | netsys_native_client_test.cpp | 202 ret = nativeClient_.FirewallSetUidsDeniedListChain(CHAIN, uids); in HWTEST_F()
|
H A D | netsys_controller_test.cpp | 366 ret = NetsysController::GetInstance().FirewallSetUidsDeniedListChain(TEST_UID, uids); in HWTEST_F() 718 ret = instance_->FirewallSetUidsDeniedListChain(0, uids); in HWTEST_F()
|
H A D | netsys_native_service_test.cpp | 404 ret = instance_->FirewallSetUidsDeniedListChain(chain, uids); in HWTEST_F()
|
H A D | netsys_controller_service_impl_test.cpp | 523 ret = instance_->FirewallSetUidsDeniedListChain(chain, uidsParam); in HWTEST_F()
|
H A D | netsys_native_service_stub_test.cpp | 373 int32_t FirewallSetUidsDeniedListChain(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 | 455 int32_t NetManagerNative::FirewallSetUidsDeniedListChain(uint32_t chain, const std::vector<uint32_t> &uids) in FirewallSetUidsDeniedListChain() function in OHOS::nmd::NetManagerNative
|