• Home
  • Raw
  • Download

Lines Matching refs:tx_seq

93 static bool retransmit_i_frames(tL2C_CCB* p_ccb, uint8_t tx_seq);
999 uint8_t tx_seq, num_lost, num_to_ack, next_srej; in process_i_frame() local
1011 tx_seq = (ctrl_word & L2CAP_FCR_TX_SEQ_BITS) >> L2CAP_FCR_TX_SEQ_BITS_SHIFT; in process_i_frame()
1014 if (tx_seq != p_fcrb->next_seq_expected) { in process_i_frame()
1015 num_lost = (tx_seq - p_fcrb->next_seq_expected) & L2CAP_FCR_SEQ_MODULO; in process_i_frame()
1023 tx_seq, p_fcrb->next_seq_expected); in process_i_frame()
1029 p_ccb->local_cid, num_lost, tx_seq, p_fcrb->next_seq_expected, in process_i_frame()
1041 if ((tx_seq == next_srej) && in process_i_frame()
1047 num_lost, tx_seq, p_fcrb->next_seq_expected, p_fcrb->rej_sent); in process_i_frame()
1049 p_buf->layer_specific = tx_seq; in process_i_frame()
1066 p_ccb->local_cid, num_lost, tx_seq, p_fcrb->next_seq_expected, in process_i_frame()
1074 p_ccb->local_cid, tx_seq, p_fcrb->next_seq_expected, in process_i_frame()
1087 p_ccb->local_cid, tx_seq, in process_i_frame()
1090 p_buf->layer_specific = tx_seq; in process_i_frame()
1108 p_fcrb->next_seq_expected = (tx_seq + 1) & L2CAP_FCR_SEQ_MODULO; in process_i_frame()
1264 static bool retransmit_i_frames(tL2C_CCB* p_ccb, uint8_t tx_seq) { in retransmit_i_frames() argument
1294 if (tx_seq != L2C_FCR_RETX_ALL_PKTS) { in retransmit_i_frames()
1310 tx_seq); in retransmit_i_frames()
1312 if (tx_seq == buf_seq) break; in retransmit_i_frames()
1318 tx_seq, in retransmit_i_frames()
1356 if ((tx_seq != L2C_FCR_RETX_ALL_PKTS) || (p_buf2 == NULL)) break; in retransmit_i_frames()