Searched refs:threadLocalRules_ (Results 1 – 2 of 2) sorted by relevance
47 thread_local uint64_t HiChecker::threadLocalRules_; member in OHOS::HiviewDFX::HiChecker58 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()
84 static thread_local uint64_t threadLocalRules_; variable