PIPE_WANT         363 kern/sys_pipe.c 	if ((rpipe->pipe_busy == 0) && (rpipe->pipe_state & PIPE_WANT)) {
PIPE_WANT         364 kern/sys_pipe.c 		rpipe->pipe_state &= ~(PIPE_WANT|PIPE_WANTW);
PIPE_WANT         424 kern/sys_pipe.c 		    (wpipe->pipe_state & PIPE_WANT)) {
PIPE_WANT         425 kern/sys_pipe.c 			wpipe->pipe_state &= ~(PIPE_WANT | PIPE_WANTR);
PIPE_WANT         568 kern/sys_pipe.c 	if ((wpipe->pipe_busy == 0) && (wpipe->pipe_state & PIPE_WANT)) {
PIPE_WANT         569 kern/sys_pipe.c 		wpipe->pipe_state &= ~(PIPE_WANT | PIPE_WANTR);
PIPE_WANT         741 kern/sys_pipe.c 			cpipe->pipe_state |= PIPE_WANT;