/base/hiviewdfx/hiview/base/ |
H A D | event.cpp | 76 void EventListener::AddListenerInfo(uint32_t type, const std::map<std::string, DomainRule>& domainRulesMap)
in AddListenerInfo() function in OHOS::HiviewDFX::EventListener 83 context->AddListenerInfo(type, GetListenerName(), eventNames, domainRulesMap);
in AddListenerInfo() 86 void EventListener::AddListenerInfo(uint32_t type, const std::set<std::string> &eventNames,
in AddListenerInfo() function in OHOS::HiviewDFX::EventListener 93 context->AddListenerInfo(type, GetListenerName(), eventNames, domainRulesMap);
in AddListenerInfo() 96 void EventListener::AddListenerInfo(uint32_t type)
in AddListenerInfo() function in OHOS::HiviewDFX::EventListener 102 context->AddListenerInfo(type, GetListenerName());
in AddListenerInfo()
|
H A D | hiview_global.cpp | 78 void HiviewGlobal::AddListenerInfo(uint32_t type, const std::string& name,
in AddListenerInfo() function in OHOS::HiviewDFX::HiviewGlobal 81 context_.AddListenerInfo(type, name, eventNames, domainRulesMap);
in AddListenerInfo() 84 void HiviewGlobal::AddListenerInfo(uint32_t type, const std::string& name)
in AddListenerInfo() function in OHOS::HiviewDFX::HiviewGlobal 86 context_.AddListenerInfo(type, name);
in AddListenerInfo()
|
/base/hiviewdfx/hiview/test/plugins/examples/dynamic_load_plugin_example/ |
H A D | dynamic_load_plugin_example.cpp | 36 AddListenerInfo(Event::PLUGIN_MAINTENANCE, {"event_test1"});
in OnLoad() 40 AddListenerInfo(OHOS::HiviewDFX::Event::MessageType::RAW_EVENT);
in OnLoad() 41 AddListenerInfo(OHOS::HiviewDFX::Event::MessageType::SYS_EVENT, {"testbb"});
in OnLoad()
|
/base/hiviewdfx/hiview/base/include/ |
H A D | hiview_global.h | 41 void AddListenerInfo(uint32_t type, const std::string& name, const std::set<std::string>& eventNames,
43 void AddListenerInfo(uint32_t type, const std::string& name);
|
H A D | event.h | 264 void AddListenerInfo(uint32_t type);
265 void AddListenerInfo(uint32_t type, const std::map<std::string, DomainRule>& domainRulesMap);
266 void AddListenerInfo(uint32_t type, const std::set<std::string> &eventNames,
|
H A D | plugin.h | 278 virtual void AddListenerInfo(uint32_t type, const std::string& name, const std::set<std::string>& eventNames,
in AddListenerInfo() function in OHOS::HiviewDFX::HiviewContext 281 virtual void AddListenerInfo(uint32_t type, const std::string& name) {};
in AddListenerInfo() function in OHOS::HiviewDFX::HiviewContext
|
/base/hiviewdfx/hiview/base/test/unittest/common/ |
H A D | plugin_test.cpp | 138 // AddListenerInfo
in HWTEST_F() 139 context.AddListenerInfo(0, "", {}, {});
in HWTEST_F() 140 context.AddListenerInfo(0, "");
in HWTEST_F()
|
H A D | event_base_test.cpp | 138 listenerRef.AddListenerInfo(0, domainRulesMap); // 0 is random type.
|
/base/hiviewdfx/hiview/test/plugins/examples/event_processor_example2/ |
H A D | event_processor_example2.cpp | 81 AddListenerInfo(OHOS::HiviewDFX::Event::MessageType::RAW_EVENT);
in OnLoad()
|
/base/hiviewdfx/hiview/core/include/ |
H A D | hiview_platform.h | 68 void AddListenerInfo(uint32_t type, const std::string& name, const std::set<std::string>& eventNames,
70 void AddListenerInfo(uint32_t type, const std::string& name) override;
|
/base/hiviewdfx/hiview/core/ |
H A D | hiview_platform.cpp | 1014 void HiviewPlatform::AddListenerInfo(uint32_t type, const std::string& name, const std::set<std::string>& eventNames,
in AddListenerInfo() function in OHOS::HiviewDFX::HiviewPlatform 1044 void HiviewPlatform::AddListenerInfo(uint32_t type, const std::string& name)
in AddListenerInfo() function in OHOS::HiviewDFX::HiviewPlatform
|
/base/hiviewdfx/hiview/plugins/eventlogger/ |
H A D | event_logger.cpp | 948 AddListenerInfo(Event::MessageType::PLUGIN_MAINTENANCE); in OnLoad()
|