Home | History | Annotate | Download | only in l2cap

Lines Matching refs:throughput

295                 sprintf(p_str, "[%02u] throughput: %5u, ack_delay avg:%3u, min:%3u, max:%3u, ack_q_count avg:%3u, min:%3u, max:%3u",
296 i, p_ccb->fcrb.throughput[i],
302 throughput_avg += p_ccb->fcrb.throughput[i];
2614 ** Description collect throughput, delay, queue size of waiting ack
2646 /* adding up length of acked I-frames to get throughput */
2647 p_ccb->fcrb.throughput[index] += p_buf->len - 8;
2681 /* calculate throughput */
2684 p_ccb->fcrb.throughput[index] /= (timestamp - p_ccb->fcrb.throughput_start);
2688 sprintf(str, "[%02u] throughput: %5u, ack_delay avg:%3u, min:%3u, max:%3u, ack_q_count avg:%3u, min:%3u, max:%3u",
2689 index, p_ccb->fcrb.throughput[index],
2707 p_ccb->fcrb.throughput[index] = 0;