Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DJSON.h46 class JSONString : public JSONValue {
48 JSONString();
49 JSONString(const char *s);
50 JSONString(const std::string &s);
52 JSONString(const JSONString &s) = delete;
53 JSONString &operator=(const JSONString &s) = delete;
57 typedef std::shared_ptr<JSONString> SP;
65 ~JSONString() override = default;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DJSON.cpp24 std::string JSONString::json_string_quote_metachars(const std::string &s) { in json_string_quote_metachars()
42 JSONString::JSONString() : JSONValue(JSONValue::Kind::String), m_data() {} in JSONString() function in JSONString
44 JSONString::JSONString(const char *s) in JSONString() function in JSONString
47 JSONString::JSONString(const std::string &s) in JSONString() function in JSONString
50 void JSONString::Write(Stream &s) { in Write()
127 JSONString key(iter->first); in Write()
536 return JSONValue::SP(new JSONString(value)); in ParseJSONValue()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/argdumper/
H A Dargdumper.cpp20 arguments->AppendObject(JSONString::SP(new JSONString(argv[i]))); in main()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp1155 response->SetObject("uuid", std::make_shared<JSONString>(uuid_str)); in Handle_jModulesInfo()
1158 std::make_shared<JSONString>( in Handle_jModulesInfo()
1161 std::make_shared<JSONString>( in Handle_jModulesInfo()
H A DGDBRemoteCommunicationServerPlatform.cpp234 std::make_shared<JSONString>(m_pending_gdb_server.socket_name.c_str())); in Handle_qQueryGDBServer()
H A DGDBRemoteCommunicationServerLLGS.cpp464 std::make_shared<JSONString>(stream.GetString()));
538 std::make_shared<JSONString>(thread_name));
542 std::make_shared<JSONString>(stop_reason_str));
546 std::make_shared<JSONString>(description));
H A DGDBRemoteCommunicationClient.cpp3610 "file", std::make_shared<JSONString>(module_file_spec.GetPath(false))); in GetModulesInfo()
3612 std::make_shared<JSONString>(triple.getTriple())); in GetModulesInfo()