Home
last modified time | relevance | path

Searched refs:user_channel (Results 1 – 5 of 5) sorted by relevance

/system/bt/gd/l2cap/le/internal/
Dsignalling_manager.cc263 auto user_channel = std::make_unique<DynamicChannel>(new_channel, handler_, link_, actual_mtu); in on_security_result_for_incoming() local
264 dynamic_service_manager_->GetService(psm)->NotifyChannelCreation(std::move(user_channel)); in on_security_result_for_incoming()
300 std::unique_ptr<DynamicChannel> user_channel = in OnConnectionResponse() local
302 link_->NotifyChannelCreation(new_channel->GetCid(), std::move(user_channel)); in OnConnectionResponse()
Dlink.cc251 void Link::NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel) { in NotifyChannelCreation() argument
256 …indOnce(std::move(pending_dynamic_channel_connection.on_open_callback_), std::move(user_channel))); in NotifyChannelCreation()
Dlink.h133 void NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel);
/system/bt/gd/l2cap/classic/internal/
Dsignalling_manager.cc368 …std::unique_ptr<DynamicChannel> user_channel = std::make_unique<DynamicChannel>(channel, handler_); in OnConfigurationRequest() local
370 link_->NotifyChannelCreation(cid, std::move(user_channel)); in OnConfigurationRequest()
372 …ic_service_manager_->GetService(channel->GetPsm())->NotifyChannelCreation(std::move(user_channel)); in OnConfigurationRequest()
573 …std::unique_ptr<DynamicChannel> user_channel = std::make_unique<DynamicChannel>(channel, handler_); in OnConfigurationResponse() local
575 link_->NotifyChannelCreation(cid, std::move(user_channel)); in OnConfigurationResponse()
577 …ic_service_manager_->GetService(channel->GetPsm())->NotifyChannelCreation(std::move(user_channel)); in OnConfigurationResponse()
Dlink.cc275 void Link::NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel) { in NotifyChannelCreation() argument
279 pending_dynamic_channel_connection.on_open_callback_.Invoke(std::move(user_channel)); in NotifyChannelCreation()