Home | History | Annotate | Download | only in l2cap

Lines Matching defs:delay

1777             /* set timestamp at the end of tx I-frame to get acking delay */
2614 ** Description collect throughput, delay, queue size of waiting ack
2627 UINT32 timestamp, delay;
2642 /* update sum, max and min of round trip delay of acking */
2659 delay = GKI_get_os_tick_count() - timestamp;
2661 p_ccb->fcrb.ack_delay_avg[index] += delay;
2662 if ( delay > p_ccb->fcrb.ack_delay_max[index] )
2663 p_ccb->fcrb.ack_delay_max[index] = delay;
2664 if ( delay < p_ccb->fcrb.ack_delay_min[index] )
2665 p_ccb->fcrb.ack_delay_min[index] = delay;