Searched refs:endpoint_ (Results 1 – 2 of 2) sorted by relevance
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()[all …]
560 Endpoint* endpoint() const { return endpoint_.get(); } in endpoint()636 std::unique_ptr<Endpoint> endpoint_; variable