Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.cpp154 std::string json_string; in SendJSONResponse() local
155 raw_string_ostream os(json_string); in SendJSONResponse()
159 escaped_response.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendJSONResponse()
H A DGDBRemoteCommunicationClient.cpp3590 std::string json_string; in SendTraceStop() local
3591 llvm::raw_string_ostream os(json_string); in SendTraceStop()
3595 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceStop()
3625 std::string json_string; in SendTraceStart() local
3626 llvm::raw_string_ostream os(json_string); in SendTraceStart()
3630 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceStart()
3660 std::string json_string; in SendTraceGetState() local
3661 llvm::raw_string_ostream os(json_string); in SendTraceGetState()
3665 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceGetState()
3694 std::string json_string; in SendTraceGetBinaryData() local
[all …]
/freebsd-14.2/contrib/libcbor/examples/
H A Dcbor2cjson.c113 char* json_string = cJSON_Print(cjson_item); in main() local
114 printf("%s\n", json_string); in main()
115 free(json_string); in main()
/freebsd-14.2/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()