Searched refs:user_channel (Results 1 – 5 of 5) sorted by relevance
/system/bt/gd/l2cap/le/internal/ |
D | signalling_manager.cc | 263 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()
|
D | link.cc | 251 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()
|
D | link.h | 133 void NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel);
|
/system/bt/gd/l2cap/classic/internal/ |
D | signalling_manager.cc | 368 …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()
|
D | link.cc | 275 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()
|