Searched refs:json_string (Results 1 – 3 of 3) sorted by relevance
159 std::string json_string; in SendJSONResponse() local160 raw_string_ostream os(json_string); in SendJSONResponse()164 escaped_response.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendJSONResponse()
3466 std::string json_string; in SendTraceStop() local3467 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() local3502 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() local3537 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 …]
194 Expected<std::string> json_string = GetLiveProcessState(); in RefreshLiveProcessState() local195 if (!json_string) { in RefreshLiveProcessState()196 DoRefreshLiveProcessState(json_string.takeError()); in RefreshLiveProcessState()200 json::parse<TraceGetStateResponse>(*json_string, "TraceGetStateResponse"); in RefreshLiveProcessState()