Searched refs:endpoint_ (Results 1 – 2 of 2) sorted by relevance
448 : name_(name), endpoint_{std::move(endpoint)} { in Service()449 if (!endpoint_)452 const auto status = endpoint_->SetService(this);458 if (endpoint_) { in ~Service()459 const auto status = endpoint_->SetService(nullptr); in ~Service()470 bool Service::IsInitialized() const { return endpoint_.get() != nullptr; } in IsInitialized()484 const auto status = endpoint_->SetChannel(channel_id, channel.get()); in SetChannel()518 const auto status = endpoint_->CloseChannel(channel_id); in CloseChannel()530 return endpoint_->ModifyChannelEvents(channel_id, clear_mask, set_mask); in ModifyChannelEvents()542 endpoint_->PushChannel(message, flags, channel.get(), &channel_id_temp); in PushChannel()[all …]
551 Endpoint* endpoint() const { return endpoint_.get(); } in endpoint()619 std::unique_ptr<Endpoint> endpoint_; variable