Home | History | Annotate | Download | only in net

Lines Matching defs:queue

83 	/** Transmit queue */
84 struct list_head queue;
232 INIT_LIST_HEAD ( &tcp->queue );
285 list_for_each_entry_safe ( iobuf, tmp, &tcp->queue, list ) {
306 if ( list_empty ( &tcp->queue ) ) {
341 * Process TCP transmit queue
346 * @v remove Remove data from queue
350 * transmit queue. Data will be copied into the @c dest I/O buffer
352 * queue.
361 list_for_each_entry_safe ( iobuf, tmp, &tcp->queue, list ) {
449 /* Fill data payload from transmit queue */
752 * transmit queue.)
772 /* Remove any acknowledged data from transmit queue */
780 if ( list_empty ( &tcp->queue ) && tcp->xfer_closed )
1069 /* Not ready if data queue is non-empty. This imposes a limit
1070 * of only one unACKed packet in the TX queue at any time; we
1073 if ( ! list_empty ( &tcp->queue ) )
1095 list_add_tail ( &iobuf->list, &tcp->queue );