Home
last modified time | relevance | path

Searched refs:BuildJsStackTrace (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/
Djs_stackinfo.h30 static std::string BuildJsStackTrace(JSThread *thread, bool needNative);
Djs_stackinfo.cpp67 std::string JsStackInfo::BuildJsStackTrace(JSThread *thread, bool needNative) in BuildJsStackTrace() function in panda::ecmascript::JsStackInfo
/arkcompiler/ets_runtime/ecmascript/napi/
Ddfx_jsnapi.cpp110 stackTraceStr = ecmascript::JsStackInfo::BuildJsStackTrace(vm->GetAssociatedJSThread(), true); in BuildNativeAndJsStackTrace()
117 bool DFXJSNApi::BuildJsStackTrace(const EcmaVM *vm, std::string &stackTraceStr) in BuildJsStackTrace() function in panda::DFXJSNApi
119 stackTraceStr = ecmascript::JsStackInfo::BuildJsStackTrace(vm->GetAssociatedJSThread(), false); in BuildJsStackTrace()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Ddfx_jsnapi.h56 static bool BuildJsStackTrace(const EcmaVM *vm, std::string &stackTraceStr);
/arkcompiler/ets_runtime/ecmascript/napi/test/
Ddfx_jsnapi_tests.cpp143 HWTEST_F_L0(DFXJSNApiTests, BuildJsStackTrace) in HWTEST_F_L0() argument
146 bool result = DFXJSNApi::BuildJsStackTrace(vm_, stackTraceStr); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/base/
Derror_helper.cpp218 std::string data = JsStackInfo::BuildJsStackTrace(thread, false); in BuildEcmaStackTrace()