Searched refs:stackTrace (Results 1 – 5 of 5) sorted by relevance
| /base/hiviewdfx/hichecker/frameworks/native/ |
| D | hichecker.cpp | 91 std::string stackTrace; in NotifySlowProcess() local 92 DumpStackTrace(stackTrace); in NotifySlowProcess() 94 "trigger:RULE_THREAD_CHECK_SLOW_PROCESS," + tag, stackTrace); in NotifySlowProcess() 103 std::string stackTrace; in NotifySlowEvent() local 104 DumpStackTrace(stackTrace); in NotifySlowEvent() 106 "trigger:RULE_CHECK_SLOW_EVENT," + tag, stackTrace); in NotifySlowEvent() 138 std::string stackTrace; in NotifyCaution() local 139 DumpStackTrace(stackTrace); in NotifyCaution() 141 caution.SetStackTrace(stackTrace); in NotifyCaution()
|
| D | caution.cpp | 45 void Caution::SetStackTrace(const std::string& stackTrace) in SetStackTrace() argument 47 stackTrace_ = stackTrace; in SetStackTrace()
|
| /base/hiviewdfx/hichecker/interfaces/native/innerkits/include/ |
| D | caution.h | 28 Caution(uint64_t triggerRule, const std::string& cautionMsg, const std::string& stackTrace) in Caution() argument 29 : triggerRule_(triggerRule), cautionMsg_(cautionMsg), stackTrace_(stackTrace) {} in Caution() 35 void SetStackTrace(const std::string& stackTrace);
|
| /base/hiviewdfx/hisysevent/interfaces/js/kits/napi/src/ |
| D | napi_hisysevent_adapter.cpp | 66 void ParseCallerInfoFromStackTrace(const std::string& stackTrace, JsCallerInfo& callerInfo) in ParseCallerInfoFromStackTrace() argument 68 if (stackTrace.empty()) { in ParseCallerInfoFromStackTrace() 73 Split(stackTrace, CALL_FUNC_INFO_DELIMITER, callInfos); in ParseCallerInfoFromStackTrace() 109 std::string stackTrace; in ParseJsCallerInfo() local 110 if (!engine->BuildJsStackTrace(stackTrace)) { in ParseJsCallerInfo() 114 ParseCallerInfoFromStackTrace(stackTrace, callerInfo); in ParseJsCallerInfo()
|
| /base/hiviewdfx/hichecker/test/unittest/common/native/ |
| D | hichecker_native_test.cpp | 262 std::string stackTrace = "stackTrace"; variable 265 Caution caution(Rule::RULE_CHECK_ABILITY_CONNECTION_LEAK, cautionMsg, stackTrace); 267 EXPECT_EQ(caution.GetStackTrace(), stackTrace);
|