Home
last modified time | relevance | path

Searched refs:threadLocalRules_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/hiviewdfx/hichecker/frameworks/native/
H A Dhichecker.cpp47 thread_local uint64_t HiChecker::threadLocalRules_; member in OHOS::HiviewDFX::HiChecker
58 threadLocalRules_ |= (Rule::ALL_THREAD_RULES | Rule::ALL_CAUTION_RULES) & rule; in AddRule()
71 threadLocalRules_ ^= threadLocalRules_ & rule; in RemoveRule()
78 return (threadLocalRules_ | processRules_); in GetRule()
87 return rule == (rule & (threadLocalRules_ | processRules_)); in Contains()
92 if ((threadLocalRules_ & Rule::RULE_THREAD_CHECK_SLOW_PROCESS) == 0) { in NotifySlowProcess()
124 if ((threadLocalRules_ & rule) == 0 && (processRules_ & rule) == 0) { in NotifyCaution()
153 if ((threadLocalRules_ & triggerRule)) { in HandleCaution()
154 CautionDetail cautionDetail(caution, threadLocalRules_); in HandleCaution()
/ohos5.0/base/hiviewdfx/hichecker/interfaces/native/innerkits/include/
H A Dhichecker.h84 static thread_local uint64_t threadLocalRules_; variable