Searched refs:json_string (Results 1 – 6 of 6) sorted by relevance
/llvm-project/lldb/unittests/debugserver/ |
H A D | JSONTest.cpp | 21 JSONValue::SP ParseJSON(const char *json_string) { in ParseJSON() argument 22 return JSONParser(json_string).ParseJSONValue(); in ParseJSON() 27 const char *json_string, in ParseAndTestJSON() argument 29 auto json_val = ParseJSON(json_string);
|
/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationServer.cpp | 155 std::string json_string; in SendJSONResponse() 156 raw_string_ostream os(json_string); in SendJSONResponse() 159 escaped_response.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendJSONResponse() 154 std::string json_string; SendJSONResponse() local
|
H A D | GDBRemoteCommunicationClient.cpp | 3669 std::string json_string; in SendTraceStop() 3670 llvm::raw_string_ostream os(json_string); in SendTraceStop() 3673 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceStop() 3703 std::string json_string; in SendTraceStart() 3704 llvm::raw_string_ostream os(json_string); in SendTraceStart() 3707 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceStart() 3737 std::string json_string; in SendTraceGetState() 3738 llvm::raw_string_ostream os(json_string); in SendTraceGetState() 3663 std::string json_string; SendTraceStop() local 3698 std::string json_string; SendTraceStart() local 3733 std::string json_string; SendTraceGetState() local 3767 std::string json_string; SendTraceGetBinaryData() local [all...] |
/llvm-project/lldb/source/Target/ |
H A D | Trace.cpp | 298 Expected<std::string> json_string = GetLiveProcessState(); in RefreshLiveProcessState() local 299 if (!json_string) in RefreshLiveProcessState() 300 return json_string.takeError(); in RefreshLiveProcessState() 303 json::parse<TraceGetStateResponse>(*json_string, in RefreshLiveProcessState() 339 *json_string); in RefreshLiveProcessState()
|
/llvm-project/lldb/test/API/functionalities/breakpoint/scripted_bkpt/ |
H A D | TestScriptedResolver.py | 68 json_string = '{"symbol":"break_on_me", "test1": "value1"}' 70 json_stream.Print(json_string)
|
/llvm-project/lldb/tools/debugserver/source/ |
H A D | RNBRemote.cpp | 5326 const char *json_string) { in get_integer_value_for_key_name_from_json() 5331 const char *c = strstr(json_string, key_with_quotes.c_str()); in get_integer_value_for_key_name_from_json() 5363 const char *json_string, in get_boolean_value_for_key_name_from_json() 5368 const char *c = strstr(json_string, key_with_quotes.c_str()); in get_boolean_value_for_key_name_from_json() 5402 const char *key, const char *json_string, std::vector<uint64_t> &ints) { in get_array_of_ints_value_for_key_name_from_json() 5406 const char *c = strstr(json_string, key_with_quotes.c_str()); in get_array_of_ints_value_for_key_name_from_json() 5313 get_integer_value_for_key_name_from_json(const char * key,const char * json_string) get_integer_value_for_key_name_from_json() argument 5350 get_boolean_value_for_key_name_from_json(const char * key,const char * json_string,bool & value) get_boolean_value_for_key_name_from_json() argument 5389 get_array_of_ints_value_for_key_name_from_json(const char * key,const char * json_string,std::vector<uint64_t> & ints) get_array_of_ints_value_for_key_name_from_json() argument
|