/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/navigation/ |
H A D | router_item_compare.cpp | 30 std::string version1 = RouterMapHelper::ExtractVersionFromOhmurl(item1.ohmurl); in operator ()() 31 std::string version2 = RouterMapHelper::ExtractVersionFromOhmurl(item2.ohmurl); in operator ()()
|
H A D | router_map_helper.cpp | 49 std::string RouterMapHelper::ExtractVersionFromOhmurl(const std::string &ohmurl) in ExtractVersionFromOhmurl() argument 51 size_t lastAmpersandPos = ohmurl.rfind('&'); in ExtractVersionFromOhmurl() 54 APP_LOGI_NOFUNC("No ampersand found in the input ohmurl"); in ExtractVersionFromOhmurl() 58 versionString = ohmurl.substr(lastAmpersandPos + 1); in ExtractVersionFromOhmurl()
|
/foundation/arkui/ace_engine/adapter/ohos/osal/ |
H A D | navigation_route_ohos.cpp | 94 TAG_LOGI(AceLogTag::ACE_NAVIGATION, "load navdestination %{public}s, ohmurl: %{public}s", in LoadPage() 96 int32_t res = callback_(item.bundleName, item.moduleName, item.ohmurl, false); in LoadPage() 127 res = callback_(routerIter->bundleName, routerIter->moduleName, routerIter->ohmurl, false); in LoadPageFromHapModule() 128 TAG_LOGD(AceLogTag::ACE_NAVIGATION, "load current destination name: %{public}s, ohmurl: %{public}s", in LoadPageFromHapModule() 129 name.c_str(), routerIter->ohmurl.c_str()); in LoadPageFromHapModule()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_navigation_test/ |
H A D | bms_bundle_navigation_test.cpp | 88 item.ohmurl = "ohmurlTest&com.example.test&entry&entry/resources/base/profile&1.2.1"; in GenerateRouterItem0() 100 item.ohmurl = "ohmurlTest&com.example.test&feature&feature/resources/base/profile&1.2.1"; in GenerateRouterItem1() 112 item.ohmurl = "ohmurlTest&com.example.test&library&library/resources/base/profile&1.2.1"; in GenerateRouterItem2() 124 item.ohmurl = "ohmurlTest&com.example.test&entry&entry/resources/base/profile&1.2.2"; in GenerateRouterItem3() 136 item.ohmurl = "ohmurlTest&com.example.test&entry&entry/resources/base/profile&1.2.1"; in GenerateRouterItem4() 148 item.ohmurl = "ohmurlTest"; in GenerateRouterItem5() 160 item.ohmurl = "ohmurlTest"; in GenerateRouterItem6() 172 item.ohmurl = "ohmurlTestROUTER_ITEM_TEST_SIZE3"; in GenerateRouterItem7() 184 item.ohmurl = "ohmurlTest"; in GenerateRouterItem8() 196 item.ohmurl in GenerateRouterItem9() [all...] |
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/navigation/ |
H A D | router_map_helper.h | 36 static std::string ExtractVersionFromOhmurl(const std::string &ohmurl);
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/include/ |
H A D | hap_module_info.h | 99 std::string ohmurl; member
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/ |
H A D | hap_module_info.cpp | 91 const char* ROUTER_ITEM_KEY_OHMURL = "ohmurl"; 306 ohmurl = Str16ToStr8(parcel.ReadString16()); in ReadFromParcel() 334 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(ohmurl)); in Marshalling() 348 {ROUTER_ITEM_KEY_OHMURL, routerItem.ohmurl}, in to_json() 379 routerItem.ohmurl, in from_json()
|
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/ |
H A D | ark_js_runtime.cpp | 199 const std::string &bundleName, const std::string &moduleName, const std::string &ohmurl) in IsExecuteModuleInAbcFile() 204 bool ret = JSNApi::IsExecuteModuleInAbcFile(vm_, bundleName, moduleName, ohmurl); in IsExecuteModuleInAbcFile() 198 IsExecuteModuleInAbcFile( const std::string &bundleName, const std::string &moduleName, const std::string &ohmurl) IsExecuteModuleInAbcFile() argument
|
H A D | ark_js_runtime.h | 105 const std::string &bundleName, const std::string &moduleName, const std::string &ohmurl);
|
/foundation/arkui/napi/native_engine/impl/ark/ |
H A D | ark_native_engine.h | 360 bool IsExecuteModuleInAbcFile(std::string bundleName, std::string moduleName, std::string ohmurl) override;
|
H A D | ark_native_engine.cpp | 1842 bool ArkNativeEngine::IsExecuteModuleInAbcFile(std::string bundleName, std::string moduleName, std::string ohmurl) in IsExecuteModuleInAbcFile() argument 1845 return panda::JSNApi::IsExecuteModuleInAbcFile(vm_, bundleName, moduleName, ohmurl); in IsExecuteModuleInAbcFile()
|
/foundation/arkui/napi/native_engine/ |
H A D | native_engine.h | 403 virtual bool IsExecuteModuleInAbcFile(std::string bundleName, std::string moduleName, std::string ohmurl) = 0;
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_test/ |
H A D | bms_bundle_data_mgr_test.cpp | 6420 routerItem.ohmurl = testString; in HWTEST_F()
|