Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/debugserver/
H A DJSONTest.cpp21 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-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.cpp155 std::string json_string; in SendJSONResponse() local
156 raw_string_ostream os(json_string); in SendJSONResponse()
160 escaped_response.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendJSONResponse()
H A DGDBRemoteCommunicationClient.cpp3587 std::string json_string; in SendTraceStop() local
3588 llvm::raw_string_ostream os(json_string); in SendTraceStop()
3592 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceStop()
3622 std::string json_string; in SendTraceStart() local
3623 llvm::raw_string_ostream os(json_string); in SendTraceStart()
3627 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceStart()
3657 std::string json_string; in SendTraceGetState() local
3658 llvm::raw_string_ostream os(json_string); in SendTraceGetState()
3662 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceGetState()
3691 std::string json_string; in SendTraceGetBinaryData() local
[all …]
/llvm-project-15.0.7/lldb/source/Target/
H A DTrace.cpp294 Expected<std::string> json_string = GetLiveProcessState(); in RefreshLiveProcessState() local
295 if (!json_string) in RefreshLiveProcessState()
296 return json_string.takeError(); in RefreshLiveProcessState()
299 json::parse<TraceGetStateResponse>(*json_string, in RefreshLiveProcessState()
335 *json_string); in RefreshLiveProcessState()
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/scripted_bkpt/
H A DTestScriptedResolver.py67 json_string = '{"symbol":"break_on_me", "test1": "value1"}'
69 json_stream.Print(json_string)
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DRNBRemote.cpp5282 const char *json_string) { in get_integer_value_for_key_name_from_json() argument
5287 const char *c = strstr(json_string, key_with_quotes.c_str()); in get_integer_value_for_key_name_from_json()
5319 const char *json_string, in get_boolean_value_for_key_name_from_json() argument
5324 const char *c = strstr(json_string, key_with_quotes.c_str()); in get_boolean_value_for_key_name_from_json()
5358 const char *key, const char *json_string, std::vector<uint64_t> &ints) { in get_array_of_ints_value_for_key_name_from_json() argument
5362 const char *c = strstr(json_string, key_with_quotes.c_str()); in get_array_of_ints_value_for_key_name_from_json()