/packages/modules/Bluetooth/system/gd/l2cap/internal/ |
D | dynamic_channel_impl.h | 35 class DynamicChannelImpl : public l2cap::internal::ChannelImpl { 37 …DynamicChannelImpl(Psm psm, Cid cid, Cid remote_cid, l2cap::internal::ILink* link, os::Handler* l2… 39 DynamicChannelImpl(const DynamicChannelImpl&) = delete; 40 DynamicChannelImpl& operator=(const DynamicChannelImpl&) = delete; 42 virtual ~DynamicChannelImpl() = default;
|
D | dynamic_channel_impl.cc | 35 DynamicChannelImpl::DynamicChannelImpl(Psm psm, Cid cid, Cid remote_cid, l2cap::internal::ILink* li… in DynamicChannelImpl() function in bluetooth::l2cap::internal::DynamicChannelImpl 45 hci::AddressWithType DynamicChannelImpl::GetDevice() const { in GetDevice() 49 void DynamicChannelImpl::RegisterOnCloseCallback(DynamicChannel::OnCloseCallback on_close_callback)… in RegisterOnCloseCallback() 59 void DynamicChannelImpl::Close() { in Close() 67 void DynamicChannelImpl::OnClosed(hci::ErrorCode status) { in OnClosed()
|
D | dynamic_channel_allocator.h | 41 class DynamicChannelImpl; variable 55 std::shared_ptr<DynamicChannelImpl> AllocateChannel(Psm psm, Cid remote_cid); 57 …std::shared_ptr<DynamicChannelImpl> AllocateReservedChannel(Cid reserved_cid, Psm psm, Cid remote_… 68 std::shared_ptr<DynamicChannelImpl> FindChannelByCid(Cid cid); 69 std::shared_ptr<DynamicChannelImpl> FindChannelByRemoteCid(Cid cid); 81 std::unordered_map<Cid, std::shared_ptr<DynamicChannelImpl>> channels_;
|
D | dynamic_channel_allocator.cc | 33 std::shared_ptr<DynamicChannelImpl> DynamicChannelAllocator::AllocateChannel(Psm psm, Cid remote_ci… in AllocateChannel() 47 …channels_.try_emplace(cid, std::make_shared<DynamicChannelImpl>(psm, cid, remote_cid, link_, l2cap… in AllocateChannel() 59 std::shared_ptr<DynamicChannelImpl> DynamicChannelAllocator::AllocateReservedChannel(Cid reserved_c… in AllocateReservedChannel() 66 …reserved_cid, std::make_shared<DynamicChannelImpl>(psm, reserved_cid, remote_cid, link_, l2cap_han… in AllocateReservedChannel() 110 std::shared_ptr<DynamicChannelImpl> DynamicChannelAllocator::FindChannelByCid(Cid cid) { in FindChannelByCid() 118 std::shared_ptr<DynamicChannelImpl> DynamicChannelAllocator::FindChannelByRemoteCid(Cid remote_cid)… in FindChannelByRemoteCid()
|
D | dynamic_channel_impl_test.cc | 74 …DynamicChannelImpl dynamic_channel_impl(0x01, kFirstDynamicChannel, kFirstDynamicChannel, &mock_cl… in TEST_F() 84 …DynamicChannelImpl dynamic_channel_impl(0x01, kFirstDynamicChannel, kFirstDynamicChannel, &mock_cl… in TEST_F() 106 …DynamicChannelImpl dynamic_channel_impl(0x01, kFirstDynamicChannel, kFirstDynamicChannel, &mock_cl… in TEST_F() 129 …DynamicChannelImpl dynamic_channel_impl(0x01, kFirstDynamicChannel, kFirstDynamicChannel, &mock_cl… in TEST_F() 154 …DynamicChannelImpl dynamic_channel_impl(0x01, kFirstDynamicChannel, kFirstDynamicChannel, &mock_cl… in TEST_F()
|
/packages/modules/Bluetooth/system/gd/l2cap/ |
D | dynamic_channel.h | 30 class DynamicChannelImpl; variable 40 …DynamicChannel(std::shared_ptr<l2cap::internal::DynamicChannelImpl> impl, os::Handler* l2cap_handl… in DynamicChannel() 82 std::shared_ptr<l2cap::internal::DynamicChannelImpl> impl_;
|
D | dynamic_channel.cc | 30 …impl_.get(), &l2cap::internal::DynamicChannelImpl::RegisterOnCloseCallback, std::move(on_close_cal… in RegisterOnCloseCallback() 34 l2cap_handler_->CallOn(impl_.get(), &l2cap::internal::DynamicChannelImpl::Close); in Close()
|
/packages/modules/Bluetooth/system/gd/l2cap/fuzz/ |
D | channel_fuzz_controller.cc | 23 using l2cap::internal::DynamicChannelImpl; 26 …ntroller::ChannelFuzzController(Handler* l2cap_handler, std::shared_ptr<DynamicChannelImpl> chan) { in ChannelFuzzController()
|
D | channel_fuzz_controller.h | 38 …zController(os::Handler* l2cap_handler, std::shared_ptr<l2cap::internal::DynamicChannelImpl> chan);
|
/packages/modules/Bluetooth/system/gd/l2cap/le/internal/ |
D | link.h | 137 …virtual std::shared_ptr<l2cap::internal::DynamicChannelImpl> AllocateDynamicChannel(Psm psm, Cid r… 139 …virtual std::shared_ptr<l2cap::internal::DynamicChannelImpl> AllocateReservedDynamicChannel(Cid re…
|
D | link.cc | 248 std::shared_ptr<l2cap::internal::DynamicChannelImpl> Link::AllocateDynamicChannel(Psm psm, Cid remo… in AllocateDynamicChannel() 259 std::shared_ptr<l2cap::internal::DynamicChannelImpl> Link::AllocateReservedDynamicChannel(Cid reser… in AllocateReservedDynamicChannel()
|
/packages/modules/Bluetooth/system/gd/l2cap/le/ |
D | dynamic_channel.h | 33 std::shared_ptr<l2cap::internal::DynamicChannelImpl> impl, in DynamicChannel()
|
/packages/modules/Bluetooth/system/gd/l2cap/classic/internal/ |
D | link_mock.h | 47 …MOCK_METHOD(std::shared_ptr<l2cap::internal::DynamicChannelImpl>, AllocateDynamicChannel, (Psm psm…
|
D | link.h | 131 …virtual std::shared_ptr<l2cap::internal::DynamicChannelImpl> AllocateDynamicChannel(Psm psm, Cid r… 133 …virtual std::shared_ptr<l2cap::internal::DynamicChannelImpl> AllocateReservedDynamicChannel(Cid re…
|
D | link.cc | 230 std::shared_ptr<l2cap::internal::DynamicChannelImpl> Link::AllocateDynamicChannel(Psm psm, Cid remo… in AllocateDynamicChannel() 239 std::shared_ptr<l2cap::internal::DynamicChannelImpl> Link::AllocateReservedDynamicChannel(Cid reser… in AllocateReservedDynamicChannel()
|