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

/freebsd-12-stable/sys/kern/
H A Dsys_pipe.c143 (((pipe)->pipe_state & PIPE_NAMED) ? (pipe) : ((pipe)->pipe_peer))
383 rpipe->pipe_state |= PIPE_DIRECTOK;
384 wpipe->pipe_state |= PIPE_DIRECTOK;
405 pp->pp_rpipe.pipe_state |= PIPE_NAMED;
417 peer = (dpipe->pipe_state & PIPE_NAMED) != 0 ? dpipe->pipe_peer : NULL;
533 KASSERT(!(cpipe->pipe_state & PIPE_DIRECTW),
593 KASSERT(cpipe->pipe_state & PIPE_LOCKFL,
607 while (cpipe->pipe_state & PIPE_LOCKFL) {
608 cpipe->pipe_state |= PIPE_LWANT;
615 cpipe->pipe_state |
[all...]
/freebsd-12-stable/sys/fs/fifofs/
H A Dfifo_vnops.c175 fpipe->pipe_state &= ~PIPE_EOF;
193 fpipe->pipe_state &= ~PIPE_EOF;
213 fpipe->pipe_state |= PIPE_EOF;
214 if (fpipe->pipe_state & PIPE_WANTW)
241 fpipe->pipe_state |= PIPE_EOF;
242 if (fpipe->pipe_state & PIPE_WANTR)
291 cpipe->pipe_state |= PIPE_EOF;
292 if ((cpipe->pipe_state & PIPE_WANTW)) {
293 cpipe->pipe_state &= ~PIPE_WANTW;
304 cpipe->pipe_state |
[all...]
/freebsd-12-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-12-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 111 milliseconds