Searched refs:pipe (Results 101 - 125 of 328) sorted by relevance

1234567891011>>

/freebsd-current/tests/sys/file/
H A Dftruncate_test.c152 if (pipe(fds) < 0)
153 err(1, "pipe");
155 errx(-1, "ftruncate(pipe) succeeded");
157 err(1, "ftruncate(pipe) returned wrong error");
/freebsd-current/sys/contrib/dev/athk/ath12k/
H A Dce.h24 /* Directions for interconnect pipe configuration.
54 /* Establish a mapping between a service/direction and a pipe.
55 * Configuration information for a Copy Engine pipe and services.
65 /* Configuration information for a Copy Engine pipe.
148 void (*send_cb)(struct ath12k_ce_pipe *pipe);
/freebsd-current/libexec/flua/modules/
H A Dlfbsd.c77 if (pipe(stdin_pipe) < 0) {
/freebsd-current/tools/test/stress2/misc/
H A Dpoll2.sh39 # - Thread W writes 8KB (PIPE_MINDIRECT) of data to a pipe at a time.
40 # - Thread P poll()s the pipe for POLLIN.
41 # - Thread R reads 8KB of data from the pipe at a time.
54 # pipe again, it will block and the application appears to be hung.
173 if (pipe(fds) == -1)
174 err(1, "pipe");
H A Dcontext.sh91 if (pipe(fds[i]) == -1)
92 err(1, "pipe");
108 err(1, "read pipe 2");
111 err(1, "write pipe 1");
120 err(1, "write pipe 2");
123 err(1, "read pipe 1");
H A Dcontext2.sh85 err(1, "read pipe 2");
88 err(1, "write pipe 1");
102 if (pipe(fds[i]) == -1)
103 err(1, "pipe");
117 err(1, "write pipe 2");
120 err(1, "read pipe 1");
H A Dpmc5.sh108 if (pipe(fd1) == -1)
109 err(1, "pipe()");
/freebsd-current/lib/libc/tests/stdio/
H A Dgets_s_test.c64 pipe(fd);
/freebsd-current/tests/sys/netpfil/pf/
H A Ddivert-to.sh436 jexec alcatraz dnctl pipe 1001 config bw 1Byte/s
437 jexec alcatraz dnctl pipe 1002 config bw 1Byte/s
465 jexec alcatraz dnctl pipe 2001 config bw 100KByte/s
466 jexec alcatraz dnctl pipe 2002 config bw 100KByte/s
H A Dfragmentation_pass.sh492 jexec alcatraz dnctl pipe 1 config bw 600Byte/s
493 jexec alcatraz dnctl pipe 2 config bw 700Byte/s
537 jexec alcatraz dnctl pipe 1 config bw 1600Byte/s
538 jexec alcatraz dnctl pipe 2 config bw 1700Byte/s
/freebsd-current/usr.sbin/autofs/
H A Dpopen.c86 error = pipe(outfds);
88 log_err(1, "pipe");
/freebsd-current/contrib/sendmail/libsm/
H A Dnotify.c59 if (pipe(Notifypipe) < 0)
/freebsd-current/sys/netinet/cc/
H A Dcc_dctcp.c243 uint32_t cwin, mss, pipe; local
297 pipe = tcp_compute_pipe(ccv->ccvc.tcp);
299 pipe = CCV(ccv, snd_max) -
304 min(CCV(ccv, snd_wnd), pipe) / 2 / mss) * mss;
/freebsd-current/contrib/netbsd-tests/lib/libcurses/director/
H A Ddirector.c57 int cmdpipe[2]; /* command pipe between director and slave */
58 int slvpipe[2]; /* reply pipe back from slave */
224 if (pipe(cmdpipe) < 0)
225 err(1, "Command pipe creation failed");
227 if (pipe(slvpipe) < 0)
228 err(1, "Slave pipe creation failed");
/freebsd-current/contrib/nvi/ex/
H A Dex_filter.c75 * input pipe.
79 if (ftype != FILTER_READ && pipe(input) < 0) {
80 msgq(sp, M_SYSERR, "pipe");
84 /* Open up utility output pipe. */
85 if (pipe(output) < 0) {
86 msgq(sp, M_SYSERR, "pipe");
111 * Redirect stdin from the read end of the input pipe, and
112 * redirect stdout/stderr to the write end of the output pipe.
115 * Historically, ex only directed stdout into the input pipe,
117 * not, directing both stdout and stderr into the input pipe
[all...]
/freebsd-current/usr.bin/newkey/
H A Dupdate.c143 if (pipe(pdto) < 0) {
146 if (pipe(pdfrom) < 0) {
/freebsd-current/usr.sbin/rpc.ypupdated/
H A Dupdate.c147 if (pipe(pdto) < 0) {
150 if (pipe(pdfrom) < 0) {
/freebsd-current/crypto/openssl/test/recipes/
H A D80-test_ocsp.t17 use OpenSSL::Test qw/:DEFAULT with pipe srctop_dir data_file/;
/freebsd-current/sys/modules/linux/
H A DMakefile99 ${CC} -c -x assembler-with-cpp -DLOCORE -fPIC -pipe -O2 -Werror \
107 ${CC} -c -fPIC -pipe -O2 -Werror -msoft-float \
/freebsd-current/sys/modules/linux64/
H A DMakefile66 -fPIC -pipe -O2 -Werror ${VDSOFLAGS} \
73 ${CC} -c -fPIC -pipe -O2 -Werror ${VDSOFLAGS} \
/freebsd-current/sys/dev/usb/controller/
H A Davr32dci.c1007 DPRINTFN(13, "xfer=%p pipe=%p transfer done\n",
1055 DPRINTFN(9, "xfer=%p, pipe=%p, error=%d\n",
1078 struct usb_endpoint *pipe, uint8_t *did_stall)
1085 DPRINTFN(5, "pipe=%p\n", pipe);
1089 ep_no = (pipe->edesc->bEndpointAddress & UE_ADDR);
1160 avr32dci_clear_stall(struct usb_device *udev, struct usb_endpoint *pipe) argument
1165 DPRINTFN(5, "pipe=%p\n", pipe);
1178 ed = pipe
1077 avr32dci_set_stall(struct usb_device *udev, struct usb_endpoint *pipe, uint8_t *did_stall) argument
1998 avr32dci_ep_init(struct usb_device *udev, struct usb_endpoint_descriptor *edesc, struct usb_endpoint *pipe) argument
[all...]
/freebsd-current/tests/sys/kern/
H A Dreaper.c57 r = pipe(pip);
172 r = pipe(pip);
322 r = pipe(pip);
397 r = pipe(pipa);
399 r = pipe(pipb);
595 r = pipe(pip);
654 r = pipe(pip);
/freebsd-current/libexec/nuageinit/
H A Dyaml.lua139 {"pipe", "^(|)(%d*[+%-]?)", sep = "\n"},
140 {"pipe", "^(>)(%d*[+%-]?)", sep = " "},
338 elseif c.token[1] == "pipe" then
444 local pipe = self:expect("pipe")
446 local result = self:parseTextBlock(pipe.sep)
/freebsd-current/contrib/netbsd-tests/lib/libc/gen/posix_spawn/
H A Dt_spawnattr.c118 * create a pipe to controll the child
120 err = pipe(pfd);
121 ATF_REQUIRE_MSG(err == 0, "could not create pipe, errno %d", errno);
/freebsd-current/contrib/netbsd-tests/lib/libc/sys/
H A Dt_write.c113 ATF_REQUIRE(pipe(fds) == 0);

Completed in 285 milliseconds

1234567891011>>