Searched refs:querySchemes (Results 1 – 13 of 13) sorted by relevance
/ohos5.0/docs/zh-cn/application-dev/application-models/ |
H A D | canopenlink.md | 5 在entry模块的module.json5文件中的[querySchemes](../quick-start/module-configuration-file.md)字段中,最多允许配置50个UR… 12 1. 在entry模块的module.json5文件中配置[querySchemes](../quick-start/module-configuration-file.md)属性,声明想要查询的U… 18 "querySchemes": [
|
/ohos5.0/docs/en/application-dev/application-models/ |
H A D | canopenlink.md | 5 A maximum of 50 URL schemes can be configured in the [querySchemes](../quick-start/module-configura… 14 1. Configure the [querySchemes](../quick-start/module-configuration-file.md) field in the **module.… 21 "querySchemes": [
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-ability-kit/ |
H A D | errorcode-bundle.md | 746 ## 17700056 指定link的scheme未在querySchemes字段下配置 749 The scheme of the specified link is not in the querySchemes. 752 调用bundleManager模块中的canOpenLink接口时,指定link的scheme未在querySchemes字段下配置。 755 未在querySchemes字段下配置指定link的scheme。 758 检查是否在querySchemes字段下配置了相应的URL scheme。
|
H A D | js-apis-bundleManager.md | 775 查询给定的链接是否可以打开。指定链接的scheme需要在module.json文件的querySchemes字段下配置。 801 | 17700056 | The scheme of the specified link is not in the querySchemes. |
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | inner_bundle_info.cpp | 440 {MODULE_QUERY_SCHEMES, info.querySchemes}, in to_json() 996 info.querySchemes, in from_json() 4255 std::vector<std::string> querySchemes = innerModuleInfos_.at(entryModuleName).querySchemes; in GetQuerySchemes() local 4256 for (size_t i = 0; i < querySchemes.size(); i++) { in GetQuerySchemes() 4257 … transform(querySchemes[i].begin(), querySchemes[i].end(), querySchemes[i].begin(), ::tolower); in GetQuerySchemes() 4259 return querySchemes; in GetQuerySchemes()
|
H A D | module_profile.cpp | 284 std::vector<std::string> querySchemes; member 1625 module.querySchemes, in from_json() 2467 if (moduleJson.module.querySchemes.size() > Profile::MAX_QUERYSCHEMES_LENGTH) { in ToInnerModuleInfo() 2471 for (const std::string &queryScheme : moduleJson.module.querySchemes) { in ToInnerModuleInfo() 2472 innerModuleInfo.querySchemes.emplace_back(queryScheme); in ToInnerModuleInfo()
|
H A D | bundle_data_mgr.cpp | 8202 auto querySchemes = innerBundleInfo.GetQuerySchemes(); in CanOpenLink() local 8203 if (querySchemes.empty()) { in CanOpenLink() 8215 if (std::find(querySchemes.begin(), querySchemes.end(), scheme) == querySchemes.end()) { in CanOpenLink()
|
/ohos5.0/docs/en/application-dev/reference/apis-ability-kit/ |
H A D | errorcode-bundle.md | 920 ## 17700056 Scheme of the Link Not Configured in querySchemes 924 The scheme of the specified link is not in the querySchemes. 928 …Manager** module is called, the scheme of the link is not configured in the **querySchemes** field. 932 The scheme of the link is not configured in the **querySchemes** field. 936 Check whether the URL scheme is configured in the **querySchemes** field.
|
H A D | js-apis-bundleManager.md | 780 … opened. The scheme of the specified link must be configured in the **querySchemes** field of the … 806 | 17700056 | The scheme of the specified link is not in the querySchemes. |
|
/ohos5.0/docs/zh-cn/application-dev/quick-start/ |
H A D | module-configuration-file.md | 83 "querySchemes": [ 142 | querySchemes | 标识允许当前应用进行跳转查询的URL schemes,只允许entry类型模块配置,最多50个,每个字符串取值不超过128字节。 | 字符串数组 | 该标签可缺省,…
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | inner_bundle_info.h | 135 std::vector<std::string> querySchemes; member
|
/ohos5.0/docs/en/application-dev/quick-start/ |
H A D | module-configuration-file.md | 83 "querySchemes": [ 142 | querySchemes | URL schemes that the current application can query for redirection. This tag is on…
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_test/ |
H A D | bms_bundle_data_mgr_test.cpp | 5249 innerModuleInfo.querySchemes.push_back(MODULE_TEST);
|