Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/tools/rootcanal/test/LL/CON_/CEN/
DBV_41_C.py199 phy_update_ind = await self.expect_ll(
205 self.assertTrue((phy_update_ind.phy_c_to_p & ~req_tx_phys) == 0)
206 self.assertTrue((phy_update_ind.phy_c_to_p & ~rsp_rx_phys) == 0)
207 self.assertTrue((phy_update_ind.phy_p_to_c & ~req_rx_phys) == 0)
208 self.assertTrue((phy_update_ind.phy_p_to_c & ~rsp_tx_phys) == 0)
209 phy_c_to_p = phy_update_ind.phy_c_to_p or phy_c_to_p
210 phy_p_to_c = phy_update_ind.phy_p_to_c or phy_p_to_c
DBV_43_C.py221 phy_update_ind = await self.expect_ll(
241 next_phy_c_to_p = phy_update_ind.phy_c_to_p or phy_c_to_p
242 next_phy_p_to_c = phy_update_ind.phy_p_to_c or phy_p_to_c
244 if phy_update_ind.phy_c_to_p != 0 or phy_update_ind.phy_p_to_c != 0:
/packages/modules/Bluetooth/tools/rootcanal/model/controller/
Dlink_layer_controller.cc607 auto phy_update_ind = model::packets::LlPhyUpdateIndView::Create(incoming); in IncomingLlPhyUpdateInd() local
608 ASSERT(phy_update_ind.IsValid()); in IncomingLlPhyUpdateInd()
622 select_phy(phy_update_ind.GetPhyPToC(), connection.GetTxPhy()); in IncomingLlPhyUpdateInd()
624 select_phy(phy_update_ind.GetPhyCToP(), connection.GetRxPhy()); in IncomingLlPhyUpdateInd()