Lines Matching defs:ret
248 const auto ret = svc->endpoint()->MessageReply(this, return_code);
249 replied_ = ret.ok();
250 return ret;
260 const auto ret = svc->endpoint()->MessageReplyFd(this, fd);
261 replied_ = ret.ok();
262 return ret;
272 const auto ret =
274 replied_ = ret.ok();
275 return ret;
285 Status<void> ret;
288 ret = svc->endpoint()->MessageReplyFd(this, handle.Get());
290 ret = svc->endpoint()->MessageReply(this, handle.Get());
292 replied_ = ret.ok();
293 return ret;
303 Status<void> ret;
306 ret = svc->endpoint()->MessageReplyFd(this, handle.Get());
308 ret = svc->endpoint()->MessageReply(this, handle.Get());
310 replied_ = ret.ok();
311 return ret;
321 Status<void> ret;
324 ret = svc->endpoint()->MessageReply(this, handle.Get());
326 ret = svc->endpoint()->MessageReply(this, handle.Get());
328 replied_ = ret.ok();
329 return ret;
338 const auto ret = svc->endpoint()->MessageReplyChannelHandle(this, handle);
339 replied_ = ret.ok();
340 return ret;
349 const auto ret = svc->endpoint()->MessageReplyChannelHandle(this, handle);
350 replied_ = ret.ok();
351 return ret;
360 const auto ret = svc->endpoint()->MessageReplyChannelHandle(this, handle);
361 replied_ = ret.ok();
362 return ret;
541 Status<RemoteChannelHandle> ret =
543 ALOGE_IF(!ret.ok(), "%s::PushChannel: Failed to push channel: %s",
544 name_.c_str(), strerror(ret.error()));
551 return ret;
565 Status<int> ret = endpoint_->CheckChannel(
567 if (ret && channel) {
574 return ret;