Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
159 escaped_response.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendJSONResponse()
H A DGDBRemoteCommunicationClient.cpp3686 std::string json_string; in SendTraceStop() local
3687 llvm::raw_string_ostream os(json_string); in SendTraceStop()
3690 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceStop()
3720 std::string json_string; in SendTraceStart() local
3721 llvm::raw_string_ostream os(json_string); in SendTraceStart()
3724 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceStart()
3754 std::string json_string; in SendTraceGetState() local
3755 llvm::raw_string_ostream os(json_string); in SendTraceGetState()
3758 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceGetState()
3787 std::string json_string; in SendTraceGetBinaryData() local
[all …]
/freebsd/contrib/libcbor/examples/
H A Dcbor2cjson.c114 char* json_string = cJSON_Print(cjson_item); in main() local
115 printf("%s\n", json_string); in main()
116 free(json_string); in main()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTrace.cpp298 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()