Home
last modified time | relevance | path

Searched refs:CigCisIdentifier (Results 1 – 13 of 13) sorted by relevance

/external/pigweed/pw_bluetooth_sapphire/host/iso/
Diso_common_test.cc21 TEST(IsoCommonTest, CigCisIdentifier) { in TEST() argument
22 CigCisIdentifier id1(0x10, 0x11); in TEST()
23 CigCisIdentifier id2(0x10, 0x12); in TEST()
24 CigCisIdentifier id3(0x11, 0x10); in TEST()
25 CigCisIdentifier id4(0x10, 0x10); in TEST()
26 CigCisIdentifier id5(0x10, 0x11); in TEST()
Diso_stream_manager_test.cc30 const bt::iso::CigCisIdentifier kCigCisId(kCigId, kCisId);
52 AcceptCisStatus CallAcceptCis(CigCisIdentifier id, in CallAcceptCis()
75 std::unordered_map<bt::iso::CigCisIdentifier, WeakSelf<IsoStream>::WeakPtr>
129 const CigCisIdentifier kId1(0x14, 0x04); in TEST_F()
130 const CigCisIdentifier kId2(0x14, 0x05); in TEST_F()
213 const CigCisIdentifier kId1(0x14, 0x04); in TEST_F()
Diso_stream_manager.cc73 AcceptCisStatus IsoStreamManager::AcceptCis(CigCisIdentifier id, in AcceptCis()
106 CigCisIdentifier id(cig_id, cis_id); in OnCisRequest()
170 CigCisIdentifier id(cig_id, cis_id); in AcceptCisRequest()
/external/pigweed/pw_bluetooth_sapphire/host/iso/public/pw_bluetooth_sapphire/internal/host/iso/
Diso_common.h101 class CigCisIdentifier {
103 CigCisIdentifier() = delete;
104 CigCisIdentifier(hci_spec::CigIdentifier cig_id, in CigCisIdentifier() function
108 bool operator==(const CigCisIdentifier other) const {
125 struct hash<bt::iso::CigCisIdentifier> {
127 std::size_t operator()(const bt::iso::CigCisIdentifier& id) const {
Diso_stream_manager.h42 [[nodiscard]] AcceptCisStatus AcceptCis(CigCisIdentifier id,
47 bool HandlerRegistered(const CigCisIdentifier& id) const { in HandlerRegistered()
83 std::unordered_map<CigCisIdentifier, CisEstablishedCallback> accept_handlers_;
86 std::unordered_map<CigCisIdentifier, std::unique_ptr<IsoStream>> streams_;
/external/pigweed/pw_bluetooth_sapphire/host/gap/public/pw_bluetooth_sapphire/internal/host/gap/
Dlow_energy_connection_handle.h32 iso::CigCisIdentifier, iso::CisEstablishedCallback)>;
68 iso::CigCisIdentifier id, iso::CisEstablishedCallback cis_established_cb);
Dlow_energy_connection.h121 iso::AcceptCisStatus AcceptCis(iso::CigCisIdentifier id,
/external/pigweed/pw_bluetooth_sapphire/host/gap/
Dlow_energy_connection_handle.cc68 iso::CigCisIdentifier id, iso::CisEstablishedCallback cis_established_cb) { in AcceptCis()
Dfake_adapter.cc106 auto accept_cis_cb = [](iso::CigCisIdentifier, iso::CisEstablishedCallback) { in Connect() argument
Dlow_energy_connection.cc154 auto accept_cis_cb = [self](iso::CigCisIdentifier id, in AddRef()
319 iso::CigCisIdentifier id, iso::CisEstablishedCallback cb) { in AcceptCis()
/external/pigweed/pw_bluetooth_sapphire/fuchsia/host/fidl/public/pw_bluetooth_sapphire/fuchsia/host/fidl/
Dlow_energy_connection_server.h76 std::unordered_map<bt::iso::CigCisIdentifier,
/external/pigweed/pw_bluetooth_sapphire/fuchsia/host/fidl/
Dlow_energy_connection_server.cc148 bt::iso::CigCisIdentifier id(cig_id, cis_id); in AcceptCis()
Dlow_energy_connection_server_test.cc325 bt::iso::CigCisIdentifier id) { in AcceptCisRequest()