Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp753 json::Object thread_obj; in GetJSONThreadsInfo() local
757 thread_obj.try_emplace("registers", std::move(*registers)); in GetJSONThreadsInfo()
760 thread_obj.try_emplace("tid", static_cast<int64_t>(tid)); in GetJSONThreadsInfo()
763 thread_obj.try_emplace("signal", signum); in GetJSONThreadsInfo()
767 thread_obj.try_emplace("name", thread_name); in GetJSONThreadsInfo()
771 thread_obj.try_emplace("reason", stop_reason); in GetJSONThreadsInfo()
774 thread_obj.try_emplace("description", description); in GetJSONThreadsInfo()
778 thread_obj.try_emplace( in GetJSONThreadsInfo()
787 thread_obj.try_emplace("medata", std::move(medata_array)); in GetJSONThreadsInfo()
789 threads_array.push_back(std::move(thread_obj)); in GetJSONThreadsInfo()