Lines Matching refs:endpoint_
442 : name_(name), endpoint_{std::move(endpoint)} { in Service()
443 if (!endpoint_)
446 const auto status = endpoint_->SetService(this);
452 if (endpoint_) { in ~Service()
453 const auto status = endpoint_->SetService(nullptr); in ~Service()
464 bool Service::IsInitialized() const { return endpoint_.get() != nullptr; } in IsInitialized()
478 const auto status = endpoint_->SetChannel(channel_id, channel.get()); in SetChannel()
512 const auto status = endpoint_->CloseChannel(channel_id); in CloseChannel()
524 return endpoint_->ModifyChannelEvents(channel_id, clear_mask, set_mask); in ModifyChannelEvents()
536 endpoint_->PushChannel(message, flags, channel.get(), &channel_id_temp); in PushChannel()
559 Status<int> ret = endpoint_->CheckChannel( in CheckChannel()
647 const auto status = endpoint_->MessageReceive(&message); in ReceiveAndDispatch()
658 endpoint_->MessageReply(&message, -EINVAL); in ReceiveAndDispatch()
672 Status<void> Service::Cancel() { return endpoint_->Cancel(); } in Cancel()