reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/StructuredData.h
  550   static ObjectSP ParseJSON(std::string json_text);

References

tools/lldb/source/API/SBStructuredData.cpp
   67   StructuredData::ObjectSP json_obj = StructuredData::ParseJSON(json_str);
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  728   auto object_sp = StructuredData::ParseJSON(response.GetStringRef());
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
  573         object_sp = StructuredData::ParseJSON(response.GetStringRef());
 2536       StructuredData::ParseJSON(response.GetStringRef());
 3449       auto json_object = StructuredData::ParseJSON(response.Peek());
 3667       StructuredData::ParseJSON(response.GetStringRef());
 3936           StructuredData::ParseJSON(response.GetStringRef());
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
 1132   StructuredData::ObjectSP object_sp = StructuredData::ParseJSON(packet.Peek());
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
 1048   auto json_object = StructuredData::ParseJSON(packet.Peek());
 1110   auto json_object = StructuredData::ParseJSON(packet.Peek());
 1147   auto json_object = StructuredData::ParseJSON(packet.Peek());
 1215   auto json_object = StructuredData::ParseJSON(packet.Peek());
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 2248         m_jstopinfo_sp = StructuredData::ParseJSON(json);
 4051           object_sp = StructuredData::ParseJSON(response.GetStringRef());
 4123           object_sp = StructuredData::ParseJSON(response.GetStringRef());
 4156           object_sp = StructuredData::ParseJSON(response.GetStringRef());
 5088   StructuredData::ObjectSP json_sp = StructuredData::ParseJSON(packet);
tools/lldb/source/Utility/StructuredData.cpp
   48   return ParseJSON(buffer_or_error.get()->getBuffer().str());
tools/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
  291   auto object_sp = StructuredData::ParseJSON(ss.GetString());
tools/lldb/unittests/tools/lldb-server/tests/MessageObjects.cpp
   99   StructuredData::ObjectSP json = StructuredData::ParseJSON(Response);