Home
last modified time | relevance | path

Searched refs:bundlePath (Results 1 – 3 of 3) sorted by relevance

/base/web/webview/ohos_nweb/src/
Dnweb_helper.cpp121 static void DoPreReadLib(const std::string &bundlePath) in DoPreReadLib() argument
124 …std::string libPathWebEngine = bundlePath + "/" + RELATIVE_PATH_FOR_BUNDLE + "/" + LIB_NAME_WEB_EN… in DoPreReadLib()
167 void NWebHelper::TryPreReadLib(bool isFirstTimeStartUpWeb, const std::string &bundlePath) in TryPreReadLib() argument
175 DoPreReadLib(bundlePath); in TryPreReadLib()
178 static void TryPreReadLibForFirstlyAppStartUp(const std::string &bundlePath) in TryPreReadLibForFirstlyAppStartUp() argument
181 std::thread preReadThread([bundlePath]() { in TryPreReadLibForFirstlyAppStartUp()
182 DoPreReadLib(bundlePath); in TryPreReadLibForFirstlyAppStartUp()
/base/web/webview/ohos_nweb/include/
Dnweb_helper.h34 static void TryPreReadLib(bool isFirstTimeStartUpWeb, const std::string &bundlePath);
/base/hiviewdfx/hiview/core/
Dhiview_platform.cpp255 std::string bundlePath = pathPrefix + GetDynamicLibName(name, true); in SearchPluginBundle() local
256 printf("bundlePath is %s\n", bundlePath.c_str()); in SearchPluginBundle()
257 if (FileUtil::FileExists(bundlePath)) { in SearchPluginBundle()
258 return bundlePath; in SearchPluginBundle()
273 std::string bundlePath = SearchPluginBundle(bundleName); in LoadPluginBundle() local
274 if (bundlePath == "") { in LoadPluginBundle()
278 auto handle = LoadModule(bundlePath); in LoadPluginBundle()