Lines Matching defs:reply
92 std::unique_ptr<PtJson> reply = PtJson::CreateObject();
93 reply->Add("id", request.GetCallId());
100 reply->Add("result", resultObj);
101 SendReply(*reply);
102 reply->ReleaseRoot();
108 std::unique_ptr<PtJson> reply = events.ToJson();
109 SendReply(*reply);
110 reply->ReleaseRoot();
113 void ProtocolHandler::SendReply(const PtJson &reply)
115 std::string str = reply.Stringify();