Lines Matching refs:tx_seq
92 static bool retransmit_i_frames(tL2C_CCB* p_ccb, uint8_t tx_seq);
1154 uint8_t tx_seq, num_lost, num_to_ack, next_srej; in process_i_frame() local
1171 tx_seq = (ctrl_word & L2CAP_FCR_TX_SEQ_BITS) >> L2CAP_FCR_TX_SEQ_BITS_SHIFT; in process_i_frame()
1174 if (tx_seq != p_fcrb->next_seq_expected) { in process_i_frame()
1175 num_lost = (tx_seq - p_fcrb->next_seq_expected) & L2CAP_FCR_SEQ_MODULO; in process_i_frame()
1183 tx_seq, p_fcrb->next_seq_expected); in process_i_frame()
1189 p_ccb->local_cid, num_lost, tx_seq, p_fcrb->next_seq_expected, in process_i_frame()
1201 if ((tx_seq == next_srej) && in process_i_frame()
1225 num_lost, tx_seq, p_fcrb->next_seq_expected, p_fcrb->rej_sent); in process_i_frame()
1227 p_buf->layer_specific = tx_seq; in process_i_frame()
1244 p_ccb->local_cid, num_lost, tx_seq, p_fcrb->next_seq_expected, in process_i_frame()
1252 p_ccb->local_cid, tx_seq, p_fcrb->next_seq_expected, in process_i_frame()
1265 p_ccb->local_cid, tx_seq, in process_i_frame()
1268 p_buf->layer_specific = tx_seq; in process_i_frame()
1286 p_fcrb->next_seq_expected = (tx_seq + 1) & L2CAP_FCR_SEQ_MODULO; in process_i_frame()
1337 uint8_t tx_seq; in process_stream_frame() local
1383 tx_seq = (ctrl_word & L2CAP_FCR_TX_SEQ_BITS) >> L2CAP_FCR_TX_SEQ_BITS_SHIFT; in process_stream_frame()
1386 if (tx_seq != p_ccb->fcrb.next_seq_expected) { in process_stream_frame()
1390 p_ccb->local_cid, p_ccb->fcrb.next_seq_expected, tx_seq, in process_stream_frame()
1397 p_ccb->fcrb.next_seq_expected = (tx_seq + 1) & L2CAP_FCR_SEQ_MODULO; in process_stream_frame()
1528 static bool retransmit_i_frames(tL2C_CCB* p_ccb, uint8_t tx_seq) { in retransmit_i_frames() argument
1558 if (tx_seq != L2C_FCR_RETX_ALL_PKTS) { in retransmit_i_frames()
1574 tx_seq); in retransmit_i_frames()
1576 if (tx_seq == buf_seq) break; in retransmit_i_frames()
1582 tx_seq, in retransmit_i_frames()
1620 if ((tx_seq != L2C_FCR_RETX_ALL_PKTS) || (p_buf2 == NULL)) break; in retransmit_i_frames()