Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.cpp159 std::string json_string; in SendJSONResponse() local
160 raw_string_ostream os(json_string); in SendJSONResponse()
164 escaped_response.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendJSONResponse()
H A DGDBRemoteCommunicationClient.cpp3466 std::string json_string; in SendTraceStop() local
3467 llvm::raw_string_ostream os(json_string); in SendTraceStop()
3471 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceStop()
3501 std::string json_string; in SendTraceStart() local
3502 llvm::raw_string_ostream os(json_string); in SendTraceStart()
3506 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceStart()
3536 std::string json_string; in SendTraceGetState() local
3537 llvm::raw_string_ostream os(json_string); in SendTraceGetState()
3541 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceGetState()
3570 std::string json_string; in SendTraceGetBinaryData() local
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTrace.cpp194 Expected<std::string> json_string = GetLiveProcessState(); in RefreshLiveProcessState() local
195 if (!json_string) { in RefreshLiveProcessState()
196 DoRefreshLiveProcessState(json_string.takeError()); in RefreshLiveProcessState()
200 json::parse<TraceGetStateResponse>(*json_string, "TraceGetStateResponse"); in RefreshLiveProcessState()