Home
last modified time | relevance | path

Searched refs:pipe_state (Results 1 – 7 of 7) sorted by relevance

/netbsd/src/sys/kern/
Dsys_pipe.c179 pipe->pipe_state = PIPE_SIGNALR; in pipe_ctor()
338 while (pipe->pipe_state & PIPE_LOCKFL) { in pipelock()
348 pipe->pipe_state |= PIPE_LOCKFL; in pipelock()
360 KASSERT(pipe->pipe_state & PIPE_LOCKFL); in pipeunlock()
362 pipe->pipe_state &= ~PIPE_LOCKFL; in pipeunlock()
398 if (sigp == NULL || (sigp->pipe_state & PIPE_ASYNC) == 0) in pipeselwakeup()
430 (atomic_load_relaxed(&rpipe->pipe_state) & PIPE_EOF) == 0) in pipe_read()
489 if (rpipe->pipe_state & PIPE_EOF) in pipe_read()
528 wakeup_state = rpipe->pipe_state; in pipe_read()
539 rpipe->pipe_state &= ~PIPE_RESTART; in pipe_read()
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/
Dser-pipe.c38 struct pipe_state struct
51 struct pipe_state *state; in pipe_open() argument
143 state = XNEW (struct pipe_state); in pipe_open()
157 struct pipe_state *state = (struct pipe_state *) scb->state; in pipe_close()
Dser-mingw.c795 struct pipe_state struct
809 static struct pipe_state * argument
812 struct pipe_state *ps = XCNEW (struct pipe_state); in make_pipe_state()
823 free_pipe_state (struct pipe_state *ps) in free_pipe_state()
850 void operator() (pipe_state *ps) const in operator()
856 typedef std::unique_ptr<pipe_state, pipe_state_destroyer> pipe_state_up;
925 struct pipe_state *ps; in pipe_windows_fdopen()
950 struct pipe_state *ps = (struct pipe_state *) scb->state; in pipe_windows_close()
986 struct pipe_state *ps = (struct pipe_state *) scb->state; in pipe_windows_write()
1008 struct pipe_state *ps = (struct pipe_state *) scb->state; in pipe_wait_handle()
[all …]
DChangeLog-20062541 * ser-mingw.c (struct pipe_state): New structure.
DChangeLog-19995293 * ser-pipe.c (struct pipe_state): Define.
5295 pipe_state''. Delete #ifdef code that used popen().
/netbsd/src/sys/sys/
Dpipe.h103 u_int pipe_state; /* pipe status info */ member
/netbsd/src/usr.bin/fstat/
Dfstat.c1289 (cp.pipe_state & PIPE_ASYNC) ? "a" : ""); in ptrans()