Home
last modified time | relevance | path

Searched refs:PluginBundle (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/hiviewdfx/hiview/core/include/
H A Dplugin_bundle.h25 class PluginBundle {
27 PluginBundle (const std::string& name, const PluginConfig& config, DynamicModule module) in PluginBundle() function
29 ~PluginBundle ();
30 PluginBundle(const PluginBundle&) = delete;
31 PluginBundle& operator= (const PluginBundle&) = delete;
32 PluginBundle(PluginBundle&& bundle) = delete;
33 PluginBundle& operator=(PluginBundle&& bundle) = delete;
H A Dhiview_platform.h94 const std::map<std::string, std::shared_ptr<PluginBundle>>& GetPluginBundleInfoMap() in GetPluginBundleInfoMap()
197 std::map<std::string, std::shared_ptr<PluginBundle>> pluginBundleInfos_;
/ohos5.0/base/hiviewdfx/hiview/core/
H A Dplugin_bundle.cpp24 void PluginBundle::ReleaseDynamicModule() in ReleaseDynamicModule()
33 PluginBundle::~PluginBundle () in ~PluginBundle()
H A Dhiview_platform.cpp322 … std::shared_ptr<PluginBundle> bundle = std::make_shared<PluginBundle>(bundleName, config, handle); in LoadPluginBundle()
323 …pluginBundleInfos_.insert(std::pair<std::string, std::shared_ptr<PluginBundle>>(bundleName, bundle… in LoadPluginBundle()