Home
last modified time | relevance | path

Searched refs:threads_info (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/tools/lldb-server/
H A DTestGdbRemoteThreadsInStopReply.py102 threads_info = context.get("threads_info")
106 jthreads_info = json.loads(re.sub(r"}]", "}", threads_info))
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp879 llvm::Expected<json::Array> threads_info = GetJSONThreadsInfo( in PrepareStopReplyPacketForThread() local
881 if (threads_info) { in PrepareStopReplyPacketForThread()
884 unescaped_response.AsRawOstream() << std::move(*threads_info); in PrepareStopReplyPacketForThread()
888 LLDB_LOG_ERROR(log, threads_info.takeError(), in PrepareStopReplyPacketForThread()
3615 llvm::Expected<json::Value> threads_info = in Handle_jThreadsInfo() local
3617 if (!threads_info) { in Handle_jThreadsInfo()
3618 LLDB_LOG_ERROR(log, threads_info.takeError(), in Handle_jThreadsInfo()
3624 response.AsRawOstream() << *threads_info; in Handle_jThreadsInfo()