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.cpp756 json::Object thread_obj; in GetJSONThreadsInfo() local
760 thread_obj.try_emplace("registers", std::move(*registers)); in GetJSONThreadsInfo()
763 thread_obj.try_emplace("tid", static_cast<int64_t>(tid)); in GetJSONThreadsInfo()
766 thread_obj.try_emplace("signal", signum); in GetJSONThreadsInfo()
770 thread_obj.try_emplace("name", thread_name); in GetJSONThreadsInfo()
774 thread_obj.try_emplace("reason", stop_reason); in GetJSONThreadsInfo()
777 thread_obj.try_emplace("description", description); in GetJSONThreadsInfo()
781 thread_obj.try_emplace( in GetJSONThreadsInfo()
790 thread_obj.try_emplace("medata", std::move(medata_array)); in GetJSONThreadsInfo()
792 threads_array.push_back(std::move(thread_obj)); in GetJSONThreadsInfo()