Home
last modified time | relevance | path

Searched refs:DynamicChannel (Results 1 – 22 of 22) sorted by relevance

/packages/modules/Bluetooth/system/gd/l2cap/
Ddynamic_channel.cc24 hci::AddressWithType DynamicChannel::GetDevice() const { in GetDevice()
28 void DynamicChannel::RegisterOnCloseCallback(DynamicChannel::OnCloseCallback on_close_callback) { in RegisterOnCloseCallback()
33 void DynamicChannel::Close() { in Close()
38 DynamicChannel::GetQueueUpEnd() const { in GetQueueUpEnd()
42 Cid DynamicChannel::HACK_GetRemoteCid() { in HACK_GetRemoteCid()
46 void DynamicChannel::HACK_SetChannelTxPriority(bool high_priority) { in HACK_SetChannelTxPriority()
Ddynamic_channel.h37 class DynamicChannel {
40DynamicChannel(std::shared_ptr<l2cap::internal::DynamicChannelImpl> impl, os::Handler* l2cap_handl… in DynamicChannel() function
/packages/modules/Bluetooth/system/gd/l2cap/le/
Ddynamic_channel.h30 class DynamicChannel : public l2cap::DynamicChannel {
32 DynamicChannel( in DynamicChannel() function
37 : l2cap::DynamicChannel(impl, l2cap_handler), link_(link), mtu_(mtu) {} in DynamicChannel()
Ddynamic_channel.cc23 LinkOptions* DynamicChannel::GetLinkOptions() { in GetLinkOptions()
27 Mtu DynamicChannel::GetMtu() const { in GetMtu()
Ddynamic_channel_manager.h67 using OnConnectionOpenCallback = common::Callback<void(std::unique_ptr<DynamicChannel>)>;
Dfacade.cc190 void on_connection_open(std::unique_ptr<DynamicChannel> channel) { in on_connection_open()
264 std::unique_ptr<DynamicChannel> channel_ = nullptr;
/packages/modules/Bluetooth/system/gd/l2cap/classic/
Ddynamic_channel.h25 using DynamicChannel = l2cap::DynamicChannel; variable
Ddynamic_channel_manager.h61 …using OnConnectionOpenCallback = common::ContextualCallback<void(std::unique_ptr<DynamicChannel>)>;
Dfacade.cc352 void on_connection_open(std::unique_ptr<DynamicChannel> channel) { in on_connection_open()
428 std::unique_ptr<DynamicChannel> channel_ = nullptr;
/packages/modules/Bluetooth/system/gd/l2cap/internal/
Ddynamic_channel_impl.h46 virtual void RegisterOnCloseCallback(DynamicChannel::OnCloseCallback on_close_callback);
87 DynamicChannel::OnCloseCallback on_close_callback_{};
Ddynamic_channel_impl.cc49 void DynamicChannelImpl::RegisterOnCloseCallback(DynamicChannel::OnCloseCallback on_close_callback)… in RegisterOnCloseCallback()
/packages/modules/Bluetooth/system/gd/l2cap/classic/internal/
Ddynamic_channel_service_impl.h41 virtual void NotifyChannelCreation(std::unique_ptr<DynamicChannel> channel) { in NotifyChannelCreation()
Dlink_test.cc49 void OnOpen(std::unique_ptr<DynamicChannel> channel) { in OnOpen()
Dsignalling_manager.cc379 …std::unique_ptr<DynamicChannel> user_channel = std::make_unique<DynamicChannel>(channel, handler_); in OnConfigurationRequest()
588 …std::unique_ptr<DynamicChannel> user_channel = std::make_unique<DynamicChannel>(channel, handler_); in OnConfigurationResponse()
Dlink.h143 virtual void NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> channel);
Dlink.cc282 void Link::NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel) { in NotifyChannelCreation()
/packages/modules/Bluetooth/system/gd/l2cap/le/internal/
Ddynamic_channel_service_impl.h43 virtual void NotifyChannelCreation(std::unique_ptr<DynamicChannel> channel) { in NotifyChannelCreation()
Dsignalling_manager.cc267 auto user_channel = std::make_unique<DynamicChannel>(new_channel, handler_, link_, actual_mtu); in on_security_result_for_incoming()
304 std::unique_ptr<DynamicChannel> user_channel = in OnConnectionResponse()
305 std::make_unique<DynamicChannel>(new_channel, handler_, link_, actual_mtu); in OnConnectionResponse()
Dlink.h147 void NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel);
Dlink.cc293 void Link::NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel) { in NotifyChannelCreation()
/packages/modules/Bluetooth/system/gd/l2cap/fuzz/
Dfuzz_dynamic_channel_manager_impl.h86 …void SetConnectionOnOpen(std::unique_ptr<l2cap::DynamicChannel> channel, std::promise<void> promis… in SetConnectionOnOpen()
Dshim_l2cap.h55 void OnConnectionComplete(std::unique_ptr<l2cap::classic::DynamicChannel> channel) {} in OnConnectionComplete()