Home | History | Annotate | Download | only in libpdx

Lines Matching refs:endpoint_

448     : name_(name), endpoint_{std::move(endpoint)} {
449 if (!endpoint_)
452 const auto status = endpoint_->SetService(this);
458 if (endpoint_) {
459 const auto status = endpoint_->SetService(nullptr);
470 bool Service::IsInitialized() const { return endpoint_.get() != nullptr; }
484 const auto status = endpoint_->SetChannel(channel_id, channel.get());
518 const auto status = endpoint_->CloseChannel(channel_id);
530 return endpoint_->ModifyChannelEvents(channel_id, clear_mask, set_mask);
542 endpoint_->PushChannel(message, flags, channel.get(), &channel_id_temp);
565 Status<int> ret = endpoint_->CheckChannel(
653 const auto status = endpoint_->MessageReceive(&message);
664 endpoint_->MessageReply(&message, -EINVAL);
678 Status<void> Service::Cancel() { return endpoint_->Cancel(); }