Lines Matching refs:req_frame
149 const Frame& req_frame) { in OnReceivedFrame() argument
150 if (req_frame.has_msg_bind_service()) in OnReceivedFrame()
151 return OnBindService(client, req_frame); in OnReceivedFrame()
152 if (req_frame.has_msg_invoke_method()) in OnReceivedFrame()
153 return OnInvokeMethod(client, req_frame); in OnReceivedFrame()
157 reply_frame.set_request_id(req_frame.request_id()); in OnReceivedFrame()
162 void HostImpl::OnBindService(ClientConnection* client, const Frame& req_frame) { in OnBindService() argument
165 const Frame::BindService& req = req_frame.msg_bind_service(); in OnBindService()
167 reply_frame.set_request_id(req_frame.request_id()); in OnBindService()
184 const Frame& req_frame) { in OnInvokeMethod() argument
185 const Frame::InvokeMethod& req = req_frame.msg_invoke_method(); in OnInvokeMethod()
187 RequestID request_id = req_frame.request_id(); in OnInvokeMethod()