Home
last modified time | relevance | path

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

/freebsd-src/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.cpp3663 std::string json_string; in SendTraceGetState()
3664 llvm::raw_string_ostream os(json_string); in SendTraceGetState()
3668 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceGetState()
3698 std::string json_string; in SendTraceGetBinaryData()
3699 llvm::raw_string_ostream os(json_string); in SendTraceGetBinaryData()
3703 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size()); in SendTraceGetBinaryData()
3733 std::string json_string; in GetQOffsets()
3734 llvm::raw_string_ostream os(json_string); in GetQOffsets()
3590 std::string json_string; SendTraceStop() local
3625 std::string json_string; SendTraceStart() local
3660 std::string json_string; SendTraceGetState() local
3694 std::string json_string; SendTraceGetBinaryData() local
[all...]
/freebsd-src/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-src/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()