Lines Matching refs:fnext
394 struct _tcpfrag_t *fwalk, *fnext; in tcprb_del() local
401 for (fwalk = TAILQ_FIRST(&rb->frags); fwalk; fwalk = fnext) { in tcprb_del()
402 fnext = TAILQ_NEXT(fwalk, link); in tcprb_del()
525 struct _tcpfrag_t *fwalk, *fnext; in tcprb_resize_meta() local
529 for (fwalk = TAILQ_FIRST(&rb->frags); fwalk; fwalk = fnext) { in tcprb_resize_meta()
530 fnext = TAILQ_NEXT(fwalk, link); in tcprb_resize_meta()
569 struct _tcpfrag_t *fwalk, *fnext; in tcprb_resize() local
580 for (fwalk = TAILQ_FIRST(&rb->frags); fwalk; fwalk = fnext) { in tcprb_resize()
581 fnext = TAILQ_NEXT(fwalk, link); in tcprb_resize()
660 struct _tcpfrag_t *f = TAILQ_FIRST(&rb->frags), *fnext; in tcprb_pwrite() local
671 fnext = TAILQ_NEXT(f, link); in tcprb_pwrite()
675 f = fnext; in tcprb_pwrite()
688 for (ef = fnext; in tcprb_pwrite()
701 fnext = TAILQ_NEXT(f, link); in tcprb_pwrite()
703 wrlen = fnext ? MIN(fnext->head - (off + uoff), len - uoff) in tcprb_pwrite()
706 if (fnext && (f->tail == fnext->head)) { in tcprb_pwrite()
708 f->tail = fnext->tail; in tcprb_pwrite()
709 TAILQ_REMOVE(&rb->frags, fnext, link); in tcprb_pwrite()
710 frags_del(fnext); in tcprb_pwrite()
741 f = fnext; in tcprb_pwrite()