Lines Matching refs:reply_frame
156 Frame reply_frame; in OnReceivedFrame() local
157 reply_frame.set_request_id(req_frame.request_id()); in OnReceivedFrame()
158 reply_frame.mutable_msg_request_error()->set_error("unknown request"); in OnReceivedFrame()
159 SendFrame(client, reply_frame); in OnReceivedFrame()
166 Frame reply_frame; in OnBindService() local
167 reply_frame.set_request_id(req_frame.request_id()); in OnBindService()
168 auto* reply = reply_frame.mutable_msg_bind_service_reply(); in OnBindService()
180 SendFrame(client, reply_frame); in OnBindService()
186 Frame reply_frame; in OnInvokeMethod() local
188 reply_frame.set_request_id(request_id); in OnInvokeMethod()
189 reply_frame.mutable_msg_invoke_method_reply()->set_success(false); in OnInvokeMethod()
192 return SendFrame(client, reply_frame); // |success| == false by default. in OnInvokeMethod()
199 return SendFrame(client, reply_frame); in OnInvokeMethod()
205 return SendFrame(client, reply_frame); in OnInvokeMethod()
237 Frame reply_frame; in ReplyToMethodInvocation() local
238 reply_frame.set_request_id(request_id); in ReplyToMethodInvocation()
243 auto* reply_frame_data = reply_frame.mutable_msg_invoke_method_reply(); in ReplyToMethodInvocation()
250 SendFrame(client, reply_frame, reply.fd()); in ReplyToMethodInvocation()