Home
last modified time | relevance | path

Searched refs:reply (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/toolchain/tooling/
Dprotocol_handler.cpp88 std::unique_ptr<PtJson> reply = PtJson::CreateObject(); in SendResponse() local
89 reply->Add("id", request.GetCallId()); in SendResponse()
96 reply->Add("result", resultObj); in SendResponse()
97 SendReply(*reply); in SendResponse()
98 reply->ReleaseRoot(); in SendResponse()
104 std::unique_ptr<PtJson> reply = events.ToJson(); in SendNotification() local
105 SendReply(*reply); in SendNotification()
106 reply->ReleaseRoot(); in SendNotification()
109 void ProtocolHandler::SendReply(const PtJson &reply) in SendReply() argument
111 std::string str = reply.Stringify(); in SendReply()
Dprotocol_handler.h53 void SendReply(const PtJson &reply);