Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DJSON.h216 class JSONArray : public JSONValue {
218 JSONArray();
220 JSONArray(const JSONArray &s) = delete;
221 JSONArray &operator=(const JSONArray &s) = delete;
225 typedef std::shared_ptr<JSONArray> SP;
246 ~JSONArray() override = default;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DJSON.cpp150 JSONArray::JSONArray() : JSONValue(JSONValue::Kind::Array) {} in JSONArray() function in JSONArray
152 void JSONArray::Write(Stream &s) { in Write()
166 bool JSONArray::SetObject(Index i, JSONValue::SP value) { in SetObject()
180 bool JSONArray::AppendObject(JSONValue::SP value) { in AppendObject()
187 JSONValue::SP JSONArray::GetObject(Index i) { in GetObject()
193 JSONArray::Size JSONArray::GetNumElements() { return m_elements.size(); } in GetNumElements()
484 std::unique_ptr<JSONArray> array_up(new JSONArray()); in ParseJSONArray()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/argdumper/
H A Dargdumper.cpp18 JSONArray::SP arguments(new JSONArray()); in main()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp494 static JSONArray::SP GetJSONThreadsInfo(NativeProcessProtocol &process,
498 JSONArray::SP threads_array_sp = std::make_shared<JSONArray>();
554 JSONArray::SP medata_array_sp = std::make_shared<JSONArray>();
660 JSONArray::SP threads_info_sp = GetJSONThreadsInfo(
3009 JSONArray::SP threads_array_sp = GetJSONThreadsInfo(
H A DGDBRemoteCommunicationServerPlatform.cpp236 JSONArray server_list; in Handle_qQueryGDBServer()
H A DGDBRemoteCommunicationServerCommon.cpp1131 JSONArray::SP response_array_sp = std::make_shared<JSONArray>(); in Handle_jModulesInfo()
H A DGDBRemoteCommunicationClient.cpp3605 JSONArray::SP module_array_sp = std::make_shared<JSONArray>(); in GetModulesInfo()