Lines Matching defs:watchPoint
51 bool FreezeResolver::ResolveEvent(const WatchPoint& watchPoint,
54 if (freezeRuleCluster_ == nullptr || !freezeRuleCluster_->GetResult(watchPoint, result)) {
57 unsigned long long timestamp = watchPoint.GetTimestamp();
58 long pid = watchPoint.GetPid();
59 std::string packageName = watchPoint.GetPackageName().empty() ?
60 watchPoint.GetProcessName() : watchPoint.GetPackageName();
65 list.push_back(watchPoint);
78 bool FreezeResolver::JudgmentResult(const WatchPoint& watchPoint,
81 if (watchPoint.GetDomain() == "ACE" && watchPoint.GetStringId() == "UI_BLOCK_6S") {
111 int FreezeResolver::ProcessEvent(const WatchPoint &watchPoint) const
114 watchPoint.GetDomain().c_str(), watchPoint.GetStringId().c_str());
120 if (!ResolveEvent(watchPoint, list, result)) {
122 watchPoint.GetDomain().c_str(), watchPoint.GetStringId().c_str());
126 if (!JudgmentResult(watchPoint, list, result)) {
128 watchPoint.GetDomain().c_str(), watchPoint.GetStringId().c_str());
132 vendor_->MergeEventLog(watchPoint, list, result);