Home | History | Annotate | Download | only in l2cap

Lines Matching refs:waiting_for_ack_q

190                         tout, p_ccb->timer_entry.in_use, p_ccb->fcrb.wait_ack, p_ccb->fcrb.waiting_for_ack_q.count);
212 p_ccb->fcrb.wait_ack, p_ccb->fcrb.waiting_for_ack_q.count);
236 while (p_fcrb->waiting_for_ack_q.p_first)
237 GKI_freebuf (GKI_dequeue (&p_fcrb->waiting_for_ack_q));
393 || (p_ccb->fcrb.waiting_for_ack_q.count >= p_ccb->peer_cfg.fcr.tx_win_sz) )
702 p_ccb->fcrb.last_ack_sent, p_ccb->fcrb.waiting_for_ack_q.count, p_ccb->fcrb.num_tries);
771 if (p_ccb->fcrb.waiting_for_ack_q.count == 0)
869 p_ccb->fcrb.wait_ack, p_ccb->fcrb.waiting_for_ack_q.count);
942 if (p_fcrb->waiting_for_ack_q.count)
954 if (num_bufs_acked > p_fcrb->waiting_for_ack_q.count)
958 ctrl_word, req_seq, p_fcrb->last_rx_ack, p_fcrb->waiting_for_ack_q.count);
966 req_seq, p_fcrb->last_rx_ack, p_fcrb->waiting_for_ack_q.count);
982 ls = ((BT_HDR *)(p_fcrb->waiting_for_ack_q.p_first))->layer_specific & L2CAP_FCR_SAR_BITS;
987 GKI_freebuf (GKI_dequeue (&p_fcrb->waiting_for_ack_q));
998 if ( (p_fcrb->waiting_for_ack_q.count == 0) && (p_ccb->xmit_hold_q.count == 0) )
1006 if (p_fcrb->waiting_for_ack_q.count)
1520 if ( (p_ccb->fcrb.waiting_for_ack_q.p_first)
1526 p_ccb->fcrb.waiting_for_ack_q.count);
1537 for (p_buf = (BT_HDR *)p_ccb->fcrb.waiting_for_ack_q.p_first; p_buf; p_buf = (BT_HDR *)GKI_getnext (p_buf))
1554 L2CAP_TRACE_ERROR2 ("retransmit_i_frames() UNKNOWN seq: %u q_count: %u", tx_seq, p_ccb->fcrb.waiting_for_ack_q.count);
1583 p_buf = (BT_HDR *)p_ccb->fcrb.waiting_for_ack_q.p_first;
1605 if (p_ccb->fcrb.waiting_for_ack_q.count)
1771 GKI_enqueue (&p_ccb->fcrb.waiting_for_ack_q, p_xmit);
1786 GKI_enqueue (&p_ccb->fcrb.waiting_for_ack_q, p_wack);
2634 p_ccb->fcrb.ack_q_count_avg[index] += p_ccb->fcrb.waiting_for_ack_q.count;
2636 if ( p_ccb->fcrb.waiting_for_ack_q.count > p_ccb->fcrb.ack_q_count_max[index] )
2637 p_ccb->fcrb.ack_q_count_max[index] = p_ccb->fcrb.waiting_for_ack_q.count;
2639 if ( p_ccb->fcrb.waiting_for_ack_q.count < p_ccb->fcrb.ack_q_count_min[index] )
2640 p_ccb->fcrb.ack_q_count_min[index] = p_ccb->fcrb.waiting_for_ack_q.count;
2643 p_buf = (BT_HDR *)(p_ccb->fcrb.waiting_for_ack_q.p_first);