Lines Matching full:queued
207 int nsd, ret, queued = -1; in wait_for_ack() local
210 ret = ioctl(fd, TIOCOUTQ, &queued); in wait_for_ack()
218 if ((size_t)queued > total) in wait_for_ack()
219 xerror("TIOCOUTQ %u, but only %zu expected\n", queued, total); in wait_for_ack()
220 assert(nsd <= queued); in wait_for_ack()
222 if (queued == 0) in wait_for_ack()
231 xerror("still tx data queued after %u ms\n", timeout); in wait_for_ack()
355 unsigned int queued; in process_one_client() local
357 ret = ioctl(fd, FIONREAD, &queued); in process_one_client()
360 if (queued > expect_len) in process_one_client()
362 queued, expect_len); in process_one_client()
363 if (queued == expect_len) in process_one_client()