Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp755 json::Object thread_obj; in GetJSONThreadsInfo() local
759 thread_obj.try_emplace("registers", std::move(*registers)); in GetJSONThreadsInfo()
762 thread_obj.try_emplace("tid", static_cast<int64_t>(tid)); in GetJSONThreadsInfo()
765 thread_obj.try_emplace("signal", signum); in GetJSONThreadsInfo()
769 thread_obj.try_emplace("name", thread_name); in GetJSONThreadsInfo()
773 thread_obj.try_emplace("reason", stop_reason); in GetJSONThreadsInfo()
776 thread_obj.try_emplace("description", description); in GetJSONThreadsInfo()
780 thread_obj.try_emplace( in GetJSONThreadsInfo()
789 thread_obj.try_emplace("medata", std::move(medata_array)); in GetJSONThreadsInfo()
791 threads_array.push_back(std::move(thread_obj)); in GetJSONThreadsInfo()