Home
last modified time | relevance | path

Searched refs:stackFrames (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/
H A Dlldbvscode_testcase.py154 stackFrames = self.get_dict_value(response, ['body', 'stackFrames'])
159 return (stackFrames, totalFrames)
164 (stackFrames, totalFrames) = self.get_stackFrames_and_totalFramesCount(
169 return stackFrames
172 stackFrames = self.get_stackFrames(threadId=threadId,
175 if stackFrames is not None:
176 stackFrame = stackFrames[0]
/openbsd-src/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-converter.cpp346 OS << R"( "stackFrames": {)"; in exportAsChromeTraceEventFormat()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A Dlldb-vscode.cpp2486 llvm::json::Array stackFrames; in request_stackTrace() local
2497 stackFrames.emplace_back(CreateStackFrame(frame)); in request_stackTrace()
2502 body.try_emplace("stackFrames", std::move(stackFrames)); in request_stackTrace()