Home
last modified time | relevance | path

Searched refs:supported_phys (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/tools/rootcanal/model/controller/
Dcontroller_properties.h191 uint8_t supported_phys = 0x1; // LE_1M is always supported. in LeSupportedPhys() local
193 supported_phys |= 0x2; in LeSupportedPhys()
196 supported_phys |= 0x4; in LeSupportedPhys()
198 return supported_phys; in LeSupportedPhys()
Dlink_layer_controller.cc366 uint8_t supported_phys = properties_.LeSupportedPhys(); in LeSetDefaultPhy() local
372 tx_phys = supported_phys; in LeSetDefaultPhy()
383 rx_phys = supported_phys; in LeSetDefaultPhy()
394 if ((tx_phys & ~supported_phys) != 0) { in LeSetDefaultPhy()
398 if ((rx_phys & ~supported_phys) != 0) { in LeSetDefaultPhy()
413 uint8_t supported_phys = properties_.LeSupportedPhys(); in LeSetPhy() local
426 tx_phys = supported_phys; in LeSetPhy()
437 rx_phys = supported_phys; in LeSetPhy()
448 if ((tx_phys & ~supported_phys) != 0) { in LeSetPhy()
453 if ((rx_phys & ~supported_phys) != 0) { in LeSetPhy()
[all …]
/packages/modules/Bluetooth/tools/rootcanal/rust/src/llcp/
Diso.rs341 fn supported_phys(&self) -> u8 { in supported_phys() method
343 let mut supported_phys = 0x1; in supported_phys() localVariable
345 supported_phys |= 0x2; in supported_phys()
348 supported_phys |= 0x4; in supported_phys()
350 supported_phys in supported_phys()
465 if (cis.phy_c_to_p & !self.supported_phys()) != 0 in hci_le_set_cig_parameters()
466 || (cis.phy_p_to_c & !self.supported_phys()) != 0 in hci_le_set_cig_parameters()
654 if (cis.phy_c_to_p & !self.supported_phys()) != 0 in hci_le_set_cig_parameters_test()
655 || (cis.phy_p_to_c & !self.supported_phys()) != 0 in hci_le_set_cig_parameters_test()