/system/bt/gd/l2cap/le/internal/ |
D | fixed_channel_impl.cc | 31 hci::Role FixedChannelImpl::GetRole() const { in GetRole() 35 hci::acl_manager::LeAclConnection* FixedChannelImpl::GetAclConnection() const { in GetAclConnection() 39 FixedChannelImpl::FixedChannelImpl(Cid cid, Link* link, os::Handler* l2cap_handler) in FixedChannelImpl() function in bluetooth::l2cap::le::internal::FixedChannelImpl 46 void FixedChannelImpl::RegisterOnCloseCallback(os::Handler* user_handler, in RegisterOnCloseCallback() 58 void FixedChannelImpl::OnClosed(hci::ErrorCode status) { in OnClosed() 75 void FixedChannelImpl::Acquire() { in Acquire() 90 void FixedChannelImpl::Release() { in Release() 105 Cid FixedChannelImpl::GetCid() const { in GetCid() 109 Cid FixedChannelImpl::GetRemoteCid() const { in GetRemoteCid() 113 LinkOptions* FixedChannelImpl::GetLinkOptions() { in GetLinkOptions()
|
D | fixed_channel_impl.h | 35 class FixedChannelImpl : public l2cap::internal::ChannelImpl { 37 FixedChannelImpl(Cid cid, Link* link, os::Handler* l2cap_handler); 39 virtual ~FixedChannelImpl() = default; 102 DISALLOW_COPY_AND_ASSIGN(FixedChannelImpl);
|
D | fixed_channel_impl_test.cc | 73 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_le_link, l2cap_handler_); in TEST_F() 86 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_le_link, l2cap_handler_); in TEST_F() 111 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_le_link, l2cap_handler_); in TEST_F() 136 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_le_link, l2cap_handler_); in TEST_F() 164 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_le_link, l2cap_handler_); in TEST_F() 188 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_le_link, l2cap_handler_); in TEST_F() 201 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_le_link, l2cap_handler_); in TEST_F() 214 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_le_link, l2cap_handler_); in TEST_F() 246 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_le_link, l2cap_handler_); in TEST_F()
|
D | fixed_channel_impl_mock.h | 29 class MockFixedChannelImpl : public FixedChannelImpl {
|
D | link_mock.h | 44 …MOCK_METHOD(std::shared_ptr<FixedChannelImpl>, AllocateFixedChannel, (Cid cid, SecurityPolicy secu…
|
D | link.h | 96 …virtual std::shared_ptr<FixedChannelImpl> AllocateFixedChannel(Cid cid, SecurityPolicy security_po… 140 …l2cap::internal::FixedChannelAllocator<FixedChannelImpl, Link> fixed_channel_allocator_{this, l2ca…
|
D | signalling_manager.h | 154 std::shared_ptr<le::internal::FixedChannelImpl> signalling_channel_;
|
D | link.cc | 137 std::shared_ptr<FixedChannelImpl> Link::AllocateFixedChannel(Cid cid, SecurityPolicy security_polic… in AllocateFixedChannel()
|
/system/bt/gd/l2cap/classic/internal/ |
D | fixed_channel_impl.cc | 30 FixedChannelImpl::FixedChannelImpl(Cid cid, Link* link, os::Handler* l2cap_handler) in FixedChannelImpl() function in bluetooth::l2cap::classic::internal::FixedChannelImpl 37 void FixedChannelImpl::RegisterOnCloseCallback(os::Handler* user_handler, in RegisterOnCloseCallback() 49 void FixedChannelImpl::OnClosed(hci::ErrorCode status) { in OnClosed() 66 void FixedChannelImpl::Acquire() { in Acquire() 81 void FixedChannelImpl::Release() { in Release()
|
D | fixed_channel_impl.h | 34 class FixedChannelImpl : public l2cap::internal::ChannelImpl { 36 FixedChannelImpl(Cid cid, Link* link, os::Handler* l2cap_handler); 38 virtual ~FixedChannelImpl() = default; 100 DISALLOW_COPY_AND_ASSIGN(FixedChannelImpl);
|
D | fixed_channel_impl_mock.h | 29 class MockFixedChannelImpl : public FixedChannelImpl { 31 …MockFixedChannelImpl(Cid cid, Link* link, os::Handler* l2cap_handler) : FixedChannelImpl(cid, link… in MockFixedChannelImpl()
|
D | fixed_channel_impl_test.cc | 75 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_classic_link, l2cap_handler_); in TEST_F() 92 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_classic_link, l2cap_handler_); in TEST_F() 121 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_classic_link, l2cap_handler_); in TEST_F() 151 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_classic_link, l2cap_handler_); in TEST_F() 184 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_classic_link, l2cap_handler_); in TEST_F() 213 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_classic_link, l2cap_handler_); in TEST_F() 231 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_classic_link, l2cap_handler_); in TEST_F() 250 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_classic_link, l2cap_handler_); in TEST_F() 288 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_classic_link, l2cap_handler_); in TEST_F()
|
D | link.h | 97 std::shared_ptr<FixedChannelImpl> AllocateFixedChannel(Cid cid); 184 …l2cap::internal::FixedChannelAllocator<FixedChannelImpl, Link> fixed_channel_allocator_{this, l2ca…
|
D | signalling_manager.h | 120 std::shared_ptr<classic::internal::FixedChannelImpl> signalling_channel_;
|
D | link.cc | 116 std::shared_ptr<FixedChannelImpl> Link::AllocateFixedChannel(Cid cid) { in AllocateFixedChannel()
|
/system/bt/gd/l2cap/classic/ |
D | fixed_channel.cc | 30 …l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::RegisterOnCloseCallback, impl_,… in RegisterOnCloseCallback() 35 l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::Acquire, impl_)); in Acquire() 39 l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::Release, impl_)); in Release()
|
D | fixed_channel.h | 31 class FixedChannelImpl; variable 43 FixedChannel(std::shared_ptr<internal::FixedChannelImpl> impl, os::Handler* l2cap_handler) in FixedChannel() 84 std::shared_ptr<internal::FixedChannelImpl> impl_;
|
/system/bt/gd/l2cap/le/ |
D | fixed_channel.cc | 30 …l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::RegisterOnCloseCallback, impl_,… in RegisterOnCloseCallback() 35 l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::Acquire, impl_)); in Acquire() 39 l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::Release, impl_)); in Release()
|
D | fixed_channel.h | 32 class FixedChannelImpl; variable 44 FixedChannel(std::shared_ptr<internal::FixedChannelImpl> impl, os::Handler* l2cap_handler) in FixedChannel() 92 std::shared_ptr<internal::FixedChannelImpl> impl_;
|
/system/bt/gd/docs/testing/ |
D | gtest.md | 146 class FixedChannelImpl : public l2cap::internal::ChannelImpl { 148 FixedChannelImpl(Cid cid, Link* link, os::Handler* l2cap_handler); 149 virtual ~FixedChannelImpl() = default; 191 class MockFixedChannelImpl : public FixedChannelImpl { 193 …MockFixedChannelImpl(Cid cid, Link* link, os::Handler* l2cap_handler) : FixedChannelImpl(cid, link… 273 FixedChannelImpl fixed_channel_impl(kSmpBrCid, &mock_classic_link, l2cap_handler_);
|