Searched refs:pipe_state (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/sys/kern/
H A Dsys_pipe.c143 (((pipe)->pipe_state & PIPE_NAMED) ? (pipe) : ((pipe)->pipe_peer))
365 rpipe->pipe_state |= PIPE_DIRECTOK;
366 wpipe->pipe_state |= PIPE_DIRECTOK;
375 pp->pp_rpipe.pipe_state |= PIPE_NAMED;
386 peer = (dpipe->pipe_state & PIPE_NAMED) != 0 ? dpipe->pipe_peer : NULL;
504 KASSERT(!(cpipe->pipe_state & PIPE_DIRECTW),
566 KASSERT(cpipe->pipe_state & PIPE_LOCKFL,
582 while (cpipe->pipe_state & PIPE_LOCKFL) {
583 cpipe->pipe_state |= PIPE_LWANT;
590 cpipe->pipe_state |
[all...]
/freebsd-11-stable/sys/fs/fifofs/
H A Dfifo_vnops.c171 fpipe->pipe_state &= ~PIPE_EOF;
187 fpipe->pipe_state &= ~PIPE_EOF;
205 fpipe->pipe_state |= PIPE_EOF;
206 if (fpipe->pipe_state & PIPE_WANTW)
232 fpipe->pipe_state |= PIPE_EOF;
233 if (fpipe->pipe_state & PIPE_WANTR)
281 cpipe->pipe_state |= PIPE_EOF;
282 if ((cpipe->pipe_state & PIPE_WANTW)) {
283 cpipe->pipe_state &= ~PIPE_WANTW;
294 cpipe->pipe_state |
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dser-pipe.c42 struct pipe_state struct
55 struct pipe_state *state;
108 state = XMALLOC (struct pipe_state);
122 struct pipe_state *state = scb->state;
/freebsd-11-stable/sys/sys/
H A Dpipe.h86 * Bits in pipe_state.
114 u_int pipe_state; /* pipe status info */ member in struct:pipe

Completed in 255 milliseconds