Home
last modified time | relevance | path

Searched refs:CrashValidator (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/hiviewdfx/hiview/plugins/crash_validator/
H A Dcrash_validator.cpp35 REGISTER(CrashValidator);
37 CrashValidator::CrashValidator() : hasLoaded_(false) in CrashValidator() function in OHOS::HiviewDFX::CrashValidator
41 CrashValidator::~CrashValidator() {} in ~CrashValidator()
43 void CrashValidator::OnLoad() in OnLoad()
55 void CrashValidator::OnUnload() in OnUnload()
60 bool CrashValidator::IsInterestedPipelineEvent(std::shared_ptr<Event> event) in IsInterestedPipelineEvent()
93 void CrashValidator::InitWorkLoop() in InitWorkLoop()
99 bool CrashValidator::CheckProcessMapEmpty() in CheckProcessMapEmpty()
112 bool CrashValidator::MatchEvent(int32_t pid) in MatchEvent()
173 bool CrashValidator::OnEvent(std::shared_ptr<Event>& event) in OnEvent()
[all …]
H A Dcrash_validator.h29 class CrashValidator : public Plugin {
31 CrashValidator();
32 ~CrashValidator();
H A Dcrashvalidator_plugin_config2 CrashValidator[]:0 static
/ohos5.0/base/hiviewdfx/faultloggerd/tools/crash_validator/
H A Dcrash_validator.cpp46 CrashValidator::CrashValidator() : stopReadKmsg_(false), totalEventCount_(0), in CrashValidator() function in OHOS::HiviewDFX::CrashValidator
51 CrashValidator::~CrashValidator() in ~CrashValidator()
58 void CrashValidator::OnEvent(std::shared_ptr<HiviewDFX::HiSysEventRecord> sysEvent) in OnEvent()
73 void CrashValidator::OnServiceDied() in OnServiceDied()
78 bool CrashValidator::InitSysEventListener() in InitSysEventListener()
94 void CrashValidator::RemoveSysEventListener() in RemoveSysEventListener()
122 void CrashValidator::Dump(int fd) in Dump()
149 bool CrashValidator::RemoveSimilarEvent(const CrashEvent& event) in RemoveSimilarEvent()
243 void CrashValidator::CheckOutOfDateEvents() in CheckOutOfDateEvents()
273 void CrashValidator::ReadServiceCrashStatus() in ReadServiceCrashStatus()
[all …]
H A Dcrash_validator.h39 class CrashValidator : public OHOS::HiviewDFX::HiSysEventListener,
40 public std::enable_shared_from_this<CrashValidator> {
42 CrashValidator();
43 ~CrashValidator();
H A Dmain.cpp26 static std::shared_ptr<OHOS::HiviewDFX::CrashValidator> g_validator = nullptr;
48 g_validator = std::make_shared<OHOS::HiviewDFX::CrashValidator>(); in main()