Home
last modified time | relevance | path

Searched refs:DynamicChannelImpl (Results 1 – 15 of 15) sorted by relevance

/packages/modules/Bluetooth/system/gd/l2cap/internal/
Ddynamic_channel_impl.h35 class DynamicChannelImpl : public l2cap::internal::ChannelImpl {
37DynamicChannelImpl(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;
Ddynamic_channel_impl.cc35 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()
Ddynamic_channel_allocator.h41 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_;
Ddynamic_channel_allocator.cc33 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()
Ddynamic_channel_impl_test.cc74DynamicChannelImpl dynamic_channel_impl(0x01, kFirstDynamicChannel, kFirstDynamicChannel, &mock_cl… in TEST_F()
84DynamicChannelImpl dynamic_channel_impl(0x01, kFirstDynamicChannel, kFirstDynamicChannel, &mock_cl… in TEST_F()
106DynamicChannelImpl dynamic_channel_impl(0x01, kFirstDynamicChannel, kFirstDynamicChannel, &mock_cl… in TEST_F()
129DynamicChannelImpl dynamic_channel_impl(0x01, kFirstDynamicChannel, kFirstDynamicChannel, &mock_cl… in TEST_F()
154DynamicChannelImpl dynamic_channel_impl(0x01, kFirstDynamicChannel, kFirstDynamicChannel, &mock_cl… in TEST_F()
/packages/modules/Bluetooth/system/gd/l2cap/
Ddynamic_channel.h30 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_;
Ddynamic_channel.cc30 …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/
Dchannel_fuzz_controller.cc23 using l2cap::internal::DynamicChannelImpl;
26 …ntroller::ChannelFuzzController(Handler* l2cap_handler, std::shared_ptr<DynamicChannelImpl> chan) { in ChannelFuzzController()
Dchannel_fuzz_controller.h38 …zController(os::Handler* l2cap_handler, std::shared_ptr<l2cap::internal::DynamicChannelImpl> chan);
/packages/modules/Bluetooth/system/gd/l2cap/le/internal/
Dlink.h137 …virtual std::shared_ptr<l2cap::internal::DynamicChannelImpl> AllocateDynamicChannel(Psm psm, Cid r…
139 …virtual std::shared_ptr<l2cap::internal::DynamicChannelImpl> AllocateReservedDynamicChannel(Cid re…
Dlink.cc248 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/
Ddynamic_channel.h33 std::shared_ptr<l2cap::internal::DynamicChannelImpl> impl, in DynamicChannel()
/packages/modules/Bluetooth/system/gd/l2cap/classic/internal/
Dlink_mock.h47 …MOCK_METHOD(std::shared_ptr<l2cap::internal::DynamicChannelImpl>, AllocateDynamicChannel, (Psm psm…
Dlink.h131 …virtual std::shared_ptr<l2cap::internal::DynamicChannelImpl> AllocateDynamicChannel(Psm psm, Cid r…
133 …virtual std::shared_ptr<l2cap::internal::DynamicChannelImpl> AllocateReservedDynamicChannel(Cid re…
Dlink.cc230 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()