Lines Matching refs:endpoint

29     state_ = svc->endpoint()->AllocateMessageState();
61 svc->endpoint()->FreeMessageState(state_); in Destroy()
80 return svc->endpoint()->ReadMessageData(this, vector, vector_length); in ReadVector()
91 svc->endpoint()->ReadMessageData(this, vector, vector_length); in ReadVectorAll()
109 return svc->endpoint()->ReadMessageData(this, &vector, 1); in Read()
119 return svc->endpoint()->WriteMessageData(this, vector, vector_length); in WriteVector()
130 svc->endpoint()->WriteMessageData(this, vector, vector_length); in WriteVectorAll()
148 return svc->endpoint()->WriteMessageData(this, &vector, 1); in Write()
157 return svc->endpoint()->PushFileHandle(this, handle); in PushFileHandle()
166 return svc->endpoint()->PushFileHandle(this, handle); in PushFileHandle()
175 return svc->endpoint()->PushFileHandle(this, handle); in PushFileHandle()
185 return svc->endpoint()->PushChannelHandle(this, handle); in PushChannelHandle()
195 return svc->endpoint()->PushChannelHandle(this, handle); in PushChannelHandle()
205 return svc->endpoint()->PushChannelHandle(this, handle); in PushChannelHandle()
218 *handle = svc->endpoint()->GetFileHandle(this, ref); in GetFileHandle()
235 *handle = svc->endpoint()->GetChannelHandle(this, ref); in GetChannelHandle()
248 const auto ret = svc->endpoint()->MessageReply(this, return_code); in Reply()
260 const auto ret = svc->endpoint()->MessageReplyFd(this, fd); in ReplyFileDescriptor()
273 svc->endpoint()->MessageReply(this, -static_cast<int>(error)); in ReplyError()
288 ret = svc->endpoint()->MessageReplyFd(this, handle.Get()); in Reply()
290 ret = svc->endpoint()->MessageReply(this, handle.Get()); in Reply()
306 ret = svc->endpoint()->MessageReplyFd(this, handle.Get()); in Reply()
308 ret = svc->endpoint()->MessageReply(this, handle.Get()); in Reply()
321 Status<void> ret = svc->endpoint()->MessageReply(this, handle.Get()); in Reply()
332 const auto ret = svc->endpoint()->MessageReplyChannelHandle(this, handle); in Reply()
343 const auto ret = svc->endpoint()->MessageReplyChannelHandle(this, handle); in Reply()
354 const auto ret = svc->endpoint()->MessageReplyChannelHandle(this, handle); in Reply()
365 return svc->endpoint()->ModifyChannelEvents(info_.cid, clear_mask, in ModifyChannelEvents()
441 Service::Service(const std::string& name, std::unique_ptr<Endpoint> endpoint) in Service() argument
442 : name_(name), endpoint_{std::move(endpoint)} { in Service()