Searched refs:user_channel (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Bluetooth/system/gd/l2cap/le/internal/ |
D | signalling_manager.cc | 267 auto user_channel = std::make_unique<DynamicChannel>(new_channel, handler_, link_, actual_mtu); in on_security_result_for_incoming() local 268 dynamic_service_manager_->GetService(psm)->NotifyChannelCreation(std::move(user_channel)); in on_security_result_for_incoming() 304 std::unique_ptr<DynamicChannel> user_channel = in OnConnectionResponse() local 306 link_->NotifyChannelCreation(new_channel->GetCid(), std::move(user_channel)); in OnConnectionResponse()
|
D | link.cc | 293 void Link::NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel) { in NotifyChannelCreation() argument 301 …indOnce(std::move(pending_dynamic_channel_connection.on_open_callback_), std::move(user_channel))); in NotifyChannelCreation()
|
D | link.h | 147 void NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel);
|
/packages/modules/Bluetooth/system/gd/l2cap/classic/internal/ |
D | signalling_manager.cc | 379 …std::unique_ptr<DynamicChannel> user_channel = std::make_unique<DynamicChannel>(channel, handler_); in OnConfigurationRequest() local 381 link_->NotifyChannelCreation(cid, std::move(user_channel)); in OnConfigurationRequest() 383 …ic_service_manager_->GetService(channel->GetPsm())->NotifyChannelCreation(std::move(user_channel)); in OnConfigurationRequest() 588 …std::unique_ptr<DynamicChannel> user_channel = std::make_unique<DynamicChannel>(channel, handler_); in OnConfigurationResponse() local 590 link_->NotifyChannelCreation(cid, std::move(user_channel)); in OnConfigurationResponse() 592 …ic_service_manager_->GetService(channel->GetPsm())->NotifyChannelCreation(std::move(user_channel)); in OnConfigurationResponse()
|
D | link.cc | 282 void Link::NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel) { in NotifyChannelCreation() argument 289 pending_dynamic_channel_connection.on_open_callback_(std::move(user_channel)); in NotifyChannelCreation()
|