/foundation/multimedia/image_framework/plugins/manager/src/framework/ |
H A D | plugin_mgr.cpp | 95 string libraryPath; in TraverseFiles() local 97 if (!CheckPluginMetaFile(file, libraryPath)) { in TraverseFiles() 100 if (RegisterPlugin(file, std::move(libraryPath)) != SUCCESS) { in TraverseFiles() 114 bool PluginMgr::CheckPluginMetaFile(const string &candidateFile, string &libraryPath) in CheckPluginMetaFile() argument 123 return CheckPluginMetaFile(candidateFile, libraryPath, libraryFileSuffix); in CheckPluginMetaFile() 126 bool PluginMgr::CheckPluginMetaFile(const string &candidateFile, string &libraryPath, const string &libraryFileSuffix) in CheckPluginMetaFile() argument 146 if (JsonHelper::GetStringValue(root, "libraryPath", libraryPath) != SUCCESS) { in CheckPluginMetaFile() 147 IMAGE_LOGE("read libraryPath failed."); in CheckPluginMetaFile() 152 libraryPath in CheckPluginMetaFile() 180 RegisterPlugin(const string &metadataPath, string &&libraryPath) RegisterPlugin() argument 232 string libraryPath; RegisterPlugin() local [all...] |
H A D | plugin_metadata.h | 27 "libraryPath":"libjpegplugin.z.so", 71 "libraryPath":"libpngplugin.z.so", 98 "libraryPath":"librawplugin.z.so", 125 "libraryPath":"libsvgplugin.z.so", 152 "libraryPath":"libwebpplugin.z.so", 196 "libraryPath":"libbmpplugin.z.so", 223 "libraryPath":"libgifplugin.z.so", 250 "libraryPath":"libextplugin.z.so", 296 "libraryPath":"libimageformatagent.z.so",
|
H A D | plugin_mgr.h | 38 bool CheckPluginMetaFile(const std::string &candidateFile, std::string &libraryPath); 39 bool CheckPluginMetaFile(const std::string &candidateFile, std::string &libraryPath, 41 uint32_t RegisterPlugin(const std::string &metadataPath, std::string &&libraryPath);
|
H A D | plugin.h | 46 uint32_t Register(std::istream &metadata, std::string &&libraryPath, std::weak_ptr<Plugin> &plugin);
|
H A D | plugin.cpp | 72 uint32_t Plugin::Register(istream &metadata, string &&libraryPath, weak_ptr<Plugin> &plugin) in Register() argument 86 libraryPath_ = std::move(libraryPath); in Register()
|
/foundation/ability/ability_runtime/js_environment/frameworks/js_environment/src/ |
H A D | js_environment.cpp | 263 void JsEnvironment::StartProfiler(const char* libraryPath, uint32_t instanceId, PROFILERTYPE profiler,
in StartProfiler() argument 281 option.libraryPath = libraryPath;
in StartProfiler() 351 int tid, const char* libraryPath, uint32_t instanceId, bool debug, bool debugMode)
in NotifyDebugMode() 357 panda::JSNApi::DebugOption debugOption = {libraryPath, debug ? debugMode : false};
in NotifyDebugMode() 350 NotifyDebugMode( int tid, const char* libraryPath, uint32_t instanceId, bool debug, bool debugMode) NotifyDebugMode() argument
|
/foundation/ability/ability_runtime/js_environment/test/unittest/js_environment_test/ |
H A D | js_environment_test.cpp | 339 const char* libraryPath = "LIBRARYPATH"; in HWTEST_F() local 340 jsEnv->StartProfiler(libraryPath, 0, JsEnvironment::PROFILERTYPE::PROFILERTYPE_CPU, 0, 0, true); in HWTEST_F() 358 const char* libraryPath = "LIBRARYPATH"; in HWTEST_F() local 359 jsEnv->StartProfiler(libraryPath, 0, JsEnvironment::PROFILERTYPE::PROFILERTYPE_HEAP, 0, 0, true); in HWTEST_F() 474 char* libraryPath; in HWTEST_F() local 478 jsEnv->NotifyDebugMode(tid, libraryPath, instanceId, debug, debugMode); in HWTEST_F()
|
/foundation/ability/ability_runtime/js_environment/interfaces/inner_api/ |
H A D | js_environment.h | 96 void StartProfiler(const char* libraryPath,
111 void NotifyDebugMode(int tid, const char* libraryPath, uint32_t instanceId, bool isDebugApp, bool debugMode);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/ |
H A D | quick_fix_deployer.cpp | 318 auto libraryPath = nativeLibraryPath; in ProcessNativeLibraryPath() local 319 std::string soPath = patchPath + ServiceConstants::PATH_SEPARATOR + libraryPath; in ProcessNativeLibraryPath() 328 nativeLibraryPath = PATCH_DIR + targetPath_ + ServiceConstants::PATH_SEPARATOR + libraryPath; in ProcessNativeLibraryPath() 332 ServiceConstants::PATH_SEPARATOR + libraryPath; in ProcessNativeLibraryPath() 724 std::string libraryPath; in ExtractQuickFixSoFile() local 727 if (!FetchPatchNativeSoAttrs(appQuickFix.deployingAppqfInfo, hqf, isLibIsolated, libraryPath, cpuAbi)) { in ExtractQuickFixSoFile() 731 std::string soPath = hqfSoPath + ServiceConstants::PATH_SEPARATOR + libraryPath; in ExtractQuickFixSoFile() 829 std::string libraryPath; in ProcessApplyDiffPatch() local 832 if (!FetchPatchNativeSoAttrs(appQuickFix.deployingAppqfInfo, hqf, isLibIsolated, libraryPath, cpuAbi)) { in ProcessApplyDiffPatch() 846 std::string newSoPath = patchPath + ServiceConstants::PATH_SEPARATOR + libraryPath; in ProcessApplyDiffPatch() 895 std::string libraryPath; PrepareCodeSignatureParam() local [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/ |
H A D | js_runtime.h | 43 virtual bool Initialize(const std::string &libraryPath, bool isDebugMode, int32_t instanceId = 0) = 0;
|
H A D | ark_js_runtime.cpp | 54 bool ArkJSRuntime::Initialize(const std::string& libraryPath, bool isDebugMode, int32_t instanceId) in Initialize() argument 73 option.SetDebuggerLibraryPath(libraryPath); in Initialize() 74 libPath_ = libraryPath; in Initialize()
|
H A D | ark_js_runtime.h | 66 bool Initialize(const std::string& libraryPath, bool isDebugMode, int32_t instanceId) override;
|
H A D | jsi_engine.cpp | 3135 std::string libraryPath = ""; in RegisterInitWorkerFunc() local 3137 libraryPath = ARK_DEBUGGER_LIB_PATH; in RegisterInitWorkerFunc() 3139 auto&& initWorkerFunc = [weakInstance, libraryPath, debugVersion, instanceId = instanceId_]( in RegisterInitWorkerFunc() 3164 panda::JSNApi::DebugOption debugOption = { libraryPath.c_str(), debugMode }; in RegisterInitWorkerFunc()
|
/foundation/ability/ability_runtime/frameworks/native/appkit/app/ |
H A D | main_thread.cpp | 2667 std::string libraryPath = libraryPaths[index]; in LoadAbilityLibrary() local 2668 TAG_LOGD(AAFwkTag::APPKIT, "Try to scanDir %{public}s", libraryPath.c_str()); in LoadAbilityLibrary() 2669 if (!ScanDir(libraryPath, fileEntries_)) { in LoadAbilityLibrary() 2670 TAG_LOGW(AAFwkTag::APPKIT, "scanDir %{public}s not exits", libraryPath.c_str()); in LoadAbilityLibrary() 2672 libraryPath = libraryPath + "/libs"; in LoadAbilityLibrary() 2673 if (!ScanDir(libraryPath, fileEntries_)) { in LoadAbilityLibrary() 2674 TAG_LOGW(AAFwkTag::APPKIT, "scanDir %{public}s not exits", libraryPath.c_str()); in LoadAbilityLibrary()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/ |
H A D | jsi_declarative_engine.cpp | 447 std::string libraryPath = ""; in InitJsEnv() local 449 libraryPath = ARK_DEBUGGER_LIB_PATH; in InitJsEnv() 452 if (!usingSharedRuntime_ && !runtime_->Initialize(libraryPath, isDebugMode_, instanceId_)) { in InitJsEnv() 1288 std::string libraryPath = ""; in RegisterInitWorkerFunc() local 1290 libraryPath = ARK_DEBUGGER_LIB_PATH; in RegisterInitWorkerFunc() 1292 auto&& initWorkerFunc = [weakInstance, libraryPath, debugVersion, instanceId = instanceId_]( in RegisterInitWorkerFunc() 1313 panda::JSNApi::DebugOption debugOption = { libraryPath.c_str(), debugMode }; in RegisterInitWorkerFunc()
|