tqe_next          669 kern/kern_lock.c 	alp->list.tqe_next = NULL;	/* sanity */
tqe_next          204 kern/vfs_bio.c 	bp->b_freelist.tqe_next = NOLIST;
tqe_next          236 kern/vfs_bio.c 	bp->b_freelist.tqe_next = NOLIST;
tqe_next          310 kern/vfs_bio.c 	if (bp->b_freelist.tqe_next != NOLIST &&
tqe_next          311 kern/vfs_bio.c 	    bp->b_freelist.tqe_next != (void *)-1)
tqe_next          711 kern/vfs_lockf.c 	splitlock->lf_block.tqe_next = NULL;
tqe_next         3977 net/if_spppsubr.c 	     ifa = ifa->ifa_link.tqe_next)
tqe_next         4025 net/if_spppsubr.c 	     ifa = ifa->ifa_link.tqe_next)
tqe_next          178 net/pf_ioctl.c 	pf_default_rule.entries.tqe_prev = &pf_default_rule.entries.tqe_next;
tqe_next          169 netatalk/aarp.c     for (; ifa; ifa = ifa->ifa_list.tqe_next ) {
tqe_next          419 netatalk/aarp.c 		aa = (struct at_ifaddr *)aa->aa_ifa.ifa_list.tqe_next ) {
tqe_next          621 netatalk/aarp.c 	    aa = (struct at_ifaddr *)aa->aa_ifa.ifa_list.tqe_next) {
tqe_next          195 netatalk/at_control.c 	        for ( ; ifa->ifa_list.tqe_next; ifa = ifa->ifa_list.tqe_next )
tqe_next          197 netatalk/at_control.c 	    	ifa->ifa_list.tqe_next = (struct ifaddr *)aa;
tqe_next          270 netatalk/at_control.c 	    ifp->if_addrlist.tqh_first = ifa->ifa_list.tqe_next;
tqe_next          272 netatalk/at_control.c 	    while ( ifa->ifa_list.tqe_next &&
tqe_next          273 netatalk/at_control.c 	    		( ifa->ifa_list.tqe_next != ifa0 )) {
tqe_next          274 netatalk/at_control.c 	    	ifa = ifa->ifa_list.tqe_next;
tqe_next          276 netatalk/at_control.c 	    if ( ifa->ifa_list.tqe_next ) {
tqe_next          277 netatalk/at_control.c 	    	ifa->ifa_list.tqe_next = ifa0->ifa_list.tqe_next;
tqe_next          317 sys/queue.h    	struct type *tqe_next;	/* next element */			\
tqe_next          326 sys/queue.h    #define	TAILQ_NEXT(elm, field)		((elm)->field.tqe_next)
tqe_next          354 sys/queue.h    	if (((elm)->field.tqe_next = (head)->tqh_first) != NULL)	\
tqe_next          356 sys/queue.h    		    &(elm)->field.tqe_next;				\
tqe_next          358 sys/queue.h    		(head)->tqh_last = &(elm)->field.tqe_next;		\
tqe_next          364 sys/queue.h    	(elm)->field.tqe_next = NULL;					\
tqe_next          367 sys/queue.h    	(head)->tqh_last = &(elm)->field.tqe_next;			\
tqe_next          371 sys/queue.h    	if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\
tqe_next          372 sys/queue.h    		(elm)->field.tqe_next->field.tqe_prev =			\
tqe_next          373 sys/queue.h    		    &(elm)->field.tqe_next;				\
tqe_next          375 sys/queue.h    		(head)->tqh_last = &(elm)->field.tqe_next;		\
tqe_next          376 sys/queue.h    	(listelm)->field.tqe_next = (elm);				\
tqe_next          377 sys/queue.h    	(elm)->field.tqe_prev = &(listelm)->field.tqe_next;		\
tqe_next          382 sys/queue.h    	(elm)->field.tqe_next = (listelm);				\
tqe_next          384 sys/queue.h    	(listelm)->field.tqe_prev = &(elm)->field.tqe_next;		\
tqe_next          388 sys/queue.h    	if (((elm)->field.tqe_next) != NULL)				\
tqe_next          389 sys/queue.h    		(elm)->field.tqe_next->field.tqe_prev =			\
tqe_next          393 sys/queue.h    	*(elm)->field.tqe_prev = (elm)->field.tqe_next;			\
tqe_next          395 sys/queue.h    	_Q_INVALIDATE((elm)->field.tqe_next);				\
tqe_next          399 sys/queue.h    	if (((elm2)->field.tqe_next = (elm)->field.tqe_next) != NULL)	\
tqe_next          400 sys/queue.h    		(elm2)->field.tqe_next->field.tqe_prev =		\
tqe_next          401 sys/queue.h    		    &(elm2)->field.tqe_next;				\
tqe_next          403 sys/queue.h    		(head)->tqh_last = &(elm2)->field.tqe_next;		\
tqe_next          407 sys/queue.h    	_Q_INVALIDATE((elm)->field.tqe_next);				\