Home
last modified time | relevance | path

Searched refs:procTime (Results 1 – 5 of 5) sorted by relevance

/base/hiviewdfx/hiview/base/event_report/event/
Dplugin_stats_event.cpp58 uint32_t procTime = paramMap_[KEY_OF_PROC_TIME].GetUint32(); in UpdateTopK() local
60 if (procTime <= topKTime.back()) { in UpdateTopK()
64 auto it = std::find_if(topKTime.begin(), topKTime.end(), [procTime] (auto t) { in UpdateTopK()
65 return procTime > t; in UpdateTopK()
68 topKTime.insert(topKTime.begin() + index, procTime); in UpdateTopK()
/base/hiviewdfx/hiview/base/event_report/cache/
Dhiview_event_cacher.cpp43 …er::UpdatePluginStatsEvent(const std::string &name, const std::string &procName, uint32_t procTime) in UpdatePluginStatsEvent() argument
52 event->Update(KEY_OF_PROC_TIME, procTime); in UpdatePluginStatsEvent()
57 event->Update(KEY_OF_PROC_TIME, procTime); in UpdatePluginStatsEvent()
/base/hiviewdfx/hiview/base/event_report/
Dhiview_event_report.cpp71 …tReport::UpdatePluginStats(const std::string &name, const std::string &procName, uint32_t procTime) in UpdatePluginStats() argument
74 name.c_str(), procName.c_str(), procTime); in UpdatePluginStats()
75 HiviewEventCacher::GetInstance().UpdatePluginStatsEvent(name, procName, procTime); in UpdatePluginStats()
/base/hiviewdfx/hiview/base/event_report/include/
Dhiview_event_report.h31 …ic void UpdatePluginStats(const std::string &name, const std::string &procName, uint32_t procTime);
/base/hiviewdfx/hiview/base/event_report/cache/include/
Dhiview_event_cacher.h34 …id UpdatePluginStatsEvent(const std::string &name, const std::string &procName, uint32_t procTime);