Searched refs:wpipe (Results 1 - 2 of 2) sorted by relevance

/freebsd-9.3-release/sys/kern/
H A Dsys_pipe.c218 static int pipe_build_write_buffer(struct pipe *wpipe, struct uio *uio);
219 static void pipe_destroy_write_buffer(struct pipe *wpipe);
220 static int pipe_direct_write(struct pipe *wpipe, struct uio *uio);
221 static void pipe_clone_write_buffer(struct pipe *wpipe);
254 struct pipe *rpipe, *wpipe; local
270 wpipe = &pp->pp_wpipe;
271 bzero(wpipe, sizeof(*wpipe));
272 wpipe->pipe_ctime = rpipe->pipe_ctime;
273 wpipe
340 struct pipe *rpipe, *wpipe; local
980 struct pipe *wpipe, *rpipe; local
1346 struct pipe *wpipe; local
1645 struct pipe *wpipe = rpipe->pipe_peer; local
1670 struct pipe *wpipe = rpipe->pipe_peer; local
[all...]
/freebsd-9.3-release/contrib/nvi/ip_cl/
H A Dip_cl.c63 int ch, nr, rpipe[2], wpipe[2]; local
80 * viewpoint, so we read from rpipe[0] and write to wpipe[1].
81 * Vi reads from wpipe[0], and writes to rpipe[1].
83 if (pipe(rpipe) == -1 || pipe(wpipe) == -1) {
88 o_fd = wpipe[1];
95 arg_format(&argc, &argv, wpipe[0], rpipe[1]);

Completed in 45 milliseconds