/foundation/bundlemanager/app_domain_verify/test/unittest/client/app_domain_verify_mgr_client_test/ |
H A D | app_domain_verify_mgr_client_test.cpp | 188 ASSERT_TRUE(AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl("https://www.openharmony.com/t1_-est")); in HWTEST_F() 190 ASSERT_FALSE(AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl("https://www.openharmony.com")); in HWTEST_F() 192 ASSERT_FALSE(AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl("https://www.openharmony.com/")); in HWTEST_F() 194 ASSERT_TRUE(AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl("https://www.openharmony.com/t1_-est/")); in HWTEST_F() 196 ASSERT_FALSE(AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl("www.openharmony.com/feitj")); in HWTEST_F() 198 ASSERT_FALSE(AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl("test://www.openharmony.com/test")); in HWTEST_F() 200 ASSERT_FALSE(AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl("https://www.openharmony.com/test*")); in HWTEST_F() 202 ASSERT_FALSE(AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl("https://www.openharmony.com/test/test")); in HWTEST_F() 206 AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl("https://www.openharmony.com/" + longPath)); in HWTEST_F() 210 AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl("http in HWTEST_F() [all...] |
/foundation/ability/ability_runtime/services/abilitymgr/include/utils/ |
H A D | want_utils.h | 51 * IsAtomicServiceUrl, check if the want contains atomic service url. 56 static bool IsAtomicServiceUrl(const Want& want);
|
/foundation/ability/ability_runtime/test/unittest/want_utils_test/include/ |
H A D | app_domain_verify_mgr_client.h | 37 * IsAtomicServiceUrl 42 bool IsAtomicServiceUrl(const std::string& url);
|
/foundation/ability/ability_runtime/test/unittest/want_utils_test/ |
H A D | want_utils_test.cpp | 106 * Function: IsAtomicServiceUrl 108 * FunctionPoints: AbilityManagerService IsAtomicServiceUrl 118 auto result = WantUtils::IsAtomicServiceUrl(want); in HWTEST_F() 125 * Function: IsAtomicServiceUrl 127 * FunctionPoints: AbilityManagerService IsAtomicServiceUrl 137 auto result = WantUtils::IsAtomicServiceUrl(want); in HWTEST_F()
|
/foundation/ability/ability_runtime/services/abilitymgr/src/utils/ |
H A D | want_utils.cpp | 72 bool WantUtils::IsAtomicServiceUrl(const Want& want) in IsAtomicServiceUrl() function in OHOS::AAFwk::WantUtils 77 isAtomicServiceShortUrl = AppDomainVerify::AppDomainVerifyMgrClient::GetInstance()->IsAtomicServiceUrl(url); in IsAtomicServiceUrl()
|
/foundation/ability/ability_runtime/test/unittest/want_utils_test/src/ |
H A D | app_domain_verify_mgr_client.cpp | 34 bool AppDomainVerifyMgrClient::IsAtomicServiceUrl(const std::string& url) in IsAtomicServiceUrl() function in OHOS::AppDomainVerify::AppDomainVerifyMgrClient
|
/foundation/bundlemanager/app_domain_verify/test/unittest/mock/include/ |
H A D | mock_verify_mgr.h | 58 virtual bool IsAtomicServiceUrl(const std::string& url) override 115 virtual bool IsAtomicServiceUrl(const std::string& url) override
|
/foundation/bundlemanager/app_domain_verify/test/unittest/services/app_domain_verify_mgr_service_test/ |
H A D | app_domain_verify_mgr_service_test.cpp | 481 EXPECT_FALSE(appDomainVerifyMgrService->IsAtomicServiceUrl(url)); in HWTEST_F() 485 EXPECT_TRUE(appDomainVerifyMgrService->IsAtomicServiceUrl(url)); in HWTEST_F() 498 EXPECT_FALSE(appDomainVerifyMgrService->IsAtomicServiceUrl(url2)); in HWTEST_F() 499 EXPECT_FALSE(appDomainVerifyMgrService->IsAtomicServiceUrl(url3)); in HWTEST_F() 503 EXPECT_TRUE(appDomainVerifyMgrService->IsAtomicServiceUrl(url3)); in HWTEST_F()
|
/foundation/bundlemanager/app_domain_verify/services/include/manager/core/ |
H A D | i_app_domain_verify_mgr_service.h | 41 virtual bool IsAtomicServiceUrl(const std::string& url) = 0;
|
H A D | app_domain_verify_mgr_service.h | 48 API_EXPORT bool IsAtomicServiceUrl(const std::string& url) override;
|
/foundation/bundlemanager/app_domain_verify/services/include/manager/zidl/ |
H A D | app_domain_verify_mgr_service_proxy.h | 39 virtual bool IsAtomicServiceUrl(const std::string& url) override;
|
/foundation/bundlemanager/app_domain_verify/interfaces/inner_api/client/include/ |
H A D | app_domain_verify_mgr_client.h | 95 * IsAtomicServiceUrl 100 bool IsAtomicServiceUrl(const std::string& url);
|
/foundation/bundlemanager/app_domain_verify/interfaces/inner_api/client/src/ |
H A D | app_domain_verify_mgr_client.cpp | 254 bool AppDomainVerifyMgrClient::IsAtomicServiceUrl(const std::string& url) in IsAtomicServiceUrl() function in OHOS::AppDomainVerify::AppDomainVerifyMgrClient 271 ret = appDomainVerifyMgrServiceProxy_->IsAtomicServiceUrl(uri.GetScheme() + "://" + uri.GetHost()); in IsAtomicServiceUrl() 274 APP_DOMAIN_VERIFY_HILOGI(APP_DOMAIN_VERIFY_MGR_MODULE_CLIENT, "call end, IsAtomicServiceUrl:%{public}d", ret); in IsAtomicServiceUrl()
|
/foundation/bundlemanager/app_domain_verify/services/src/manager/zidl/ |
H A D | app_domain_verify_mgr_service_stub.cpp | 190 bool status = IsAtomicServiceUrl(url); in OnIsAtomicServiceUrl()
|
H A D | app_domain_verify_mgr_service_proxy.cpp | 202 bool AppDomainVerifyMgrServiceProxy::IsAtomicServiceUrl(const std::string& url) in IsAtomicServiceUrl() function in OHOS::AppDomainVerify::AppDomainVerifyMgrServiceProxy 212 APP_DOMAIN_VERIFY_HILOGE(APP_DOMAIN_VERIFY_MGR_MODULE_CLIENT, "IsAtomicServiceUrl failed, error: %d", error); in IsAtomicServiceUrl() 233 APP_DOMAIN_VERIFY_HILOGE(APP_DOMAIN_VERIFY_MGR_MODULE_CLIENT, "IsAtomicServiceUrl failed, error: %d", error); in UpdateWhiteListUrls()
|
/foundation/bundlemanager/app_domain_verify/services/src/manager/core/ |
H A D | app_domain_verify_mgr_service.cpp | 161 bool AppDomainVerifyMgrService::IsAtomicServiceUrl(const std::string& url) in IsAtomicServiceUrl() function in OHOS::AppDomainVerify::AppDomainVerifyMgrService
|
/foundation/ability/ability_runtime/services/abilitymgr/src/ |
H A D | ability_manager_service.cpp | 12007 if (!WantUtils::IsAtomicServiceUrl(want) || in OpenLink()
|