Lines Matching refs:uint64_t
27 const uint64_t RULE_CAUTION_PRINT_LOG = 1ULL << 63;
28 const uint64_t RULE_CAUTION_TRIGGER_CRASH = 1ULL << 62;
29 const uint64_t RULE_THREAD_CHECK_SLOW_PROCESS = 1ULL;
30 const uint64_t RULE_CHECK_SLOW_EVENT = 1ULL << 32;
31 const uint64_t RULE_CHECK_ABILITY_CONNECTION_LEAK = 1ULL << 33;
32 const uint64_t RULE_CHECK_ARKUI_PERFORMANCE = 1ULL << 34;
33 const uint64_t ALL_RULES = RULE_CAUTION_PRINT_LOG | RULE_CAUTION_TRIGGER_CRASH | RULE_THREAD_CHECK_…
35 const uint64_t ALL_PROCESS_RULES = RULE_CHECK_SLOW_EVENT | RULE_CHECK_ABILITY_CONNECTION_LEAK
37 const uint64_t ALL_THREAD_RULES = RULE_THREAD_CHECK_SLOW_PROCESS;
38 const uint64_t ALL_CAUTION_RULES = RULE_CAUTION_PRINT_LOG | RULE_CAUTION_TRIGGER_CRASH;
43 CautionDetail(const Caution& caution, uint64_t rules) : caution_(caution), rules_(rules) {} in CautionDetail()
46 bool CautionEnable(uint64_t rule) const in CautionEnable()
52 uint64_t rules_;
63 static void NotifyCaution(uint64_t rule, const std::string& tag, Caution& caution);
66 static void AddRule(uint64_t rule);
67 static void RemoveRule(uint64_t rule);
68 static uint64_t GetRule();
69 static bool Contains(uint64_t rule);
77 static bool HasCautionRule(uint64_t rules);
79 static bool CheckRule(uint64_t rule);
83 static volatile uint64_t processRules_;
84 static thread_local uint64_t threadLocalRules_;