Searched refs:pipe (Results 76 - 100 of 328) sorted by relevance

1234567891011>>

/freebsd-current/tools/test/stress2/misc/
H A Dkevent13.sh32 # "panic: mutex pipe mutex not owned at sys_pipe.c:1769" seen:
88 if (pipe(fd) < 0)
89 err(1, "pipe");
H A Dpipe_enomem.sh66 if (pipe(pp) == -1) {
90 printf("pipe %zd fds %d %d error %s\n",
93 printf("pipe %zd fds %d %d EOF\n",
H A Dsigfastblock2.sh96 assert_noerr(pipe(pipes));
H A Dpipe3.sh30 # pipe(2) tests.
83 if (pipe(fds) == -1)
84 err(1, "pipe");
92 err(1, "pipe write");
100 err(1, "pipe read");
H A Dselfd.sh100 if (pipe(fds[i]) == -1)
101 err(1, "pipe()");
/freebsd-current/bin/sh/tests/parser/
H A DMakefile29 ${PACKAGE}FILES+= and-pipe-not.0
89 ${PACKAGE}FILES+= pipe-not1.0
/freebsd-current/sys/contrib/dev/athk/ath10k/
H A Dpci.h46 /* Service to pipe map Target address */
79 /* Per-pipe state. */
84 /* Our pipe number; facilitates use of pipe_info ptrs. */
232 void ath10k_pci_hif_send_complete_check(struct ath10k *ar, u8 pipe,
234 u16 ath10k_pci_hif_get_free_queue_number(struct ath10k *ar, u8 pipe);
H A Dusb.h93 /* protects pipe->urb_list_head and pipe->urb_cnt */
107 struct ath10k_usb_pipe *pipe; member in struct:ath10k_urb_context
H A Dsnoc.c491 static int __ath10k_snoc_rx_post_buf(struct ath10k_snoc_pipe *pipe) argument
493 struct ath10k_ce_pipe *ce_pipe = pipe->ce_hdl;
494 struct ath10k *ar = pipe->hif_ce_state;
500 skb = dev_alloc_skb(pipe->buf_sz);
530 static void ath10k_snoc_rx_post_pipe(struct ath10k_snoc_pipe *pipe) argument
532 struct ath10k *ar = pipe->hif_ce_state;
535 struct ath10k_ce_pipe *ce_pipe = pipe->ce_hdl;
538 if (pipe->buf_sz == 0)
548 ret = __ath10k_snoc_rx_post_buf(pipe);
601 ath10k_dbg(ar, ATH10K_DBG_SNOC, "snoc rx ce pipe
748 ath10k_snoc_hif_get_free_queue_number(struct ath10k *ar, u8 pipe) argument
757 ath10k_snoc_hif_send_complete_check(struct ath10k *ar, u8 pipe, int force) argument
1377 struct ath10k_snoc_pipe *pipe; local
[all...]
/freebsd-current/contrib/libarchive/libarchive/
H A Dfilter_fork_posix.c91 if (pipe(stdin_pipe) == -1)
99 if (pipe(stdout_pipe) == -1)
/freebsd-current/contrib/netbsd-tests/rump/rumpkern/
H A Dt_kern.c62 RL(pipe(pipetti));
/freebsd-current/usr.bin/diff/
H A Dpr.c58 if (pipe(pfd) == -1)
59 err(2, "pipe");
97 /* close the pipe to pr and restore stdout */
/freebsd-current/crypto/heimdal/lib/roken/
H A Dsimple_exec.c153 pipe(in_fd);
155 pipe(out_fd);
157 pipe(err_fd);
175 /* pipe everything caller doesn't care about to /dev/null */
/freebsd-current/sys/security/mac/
H A Dmac_pipe.c53 #include <sys/pipe.h>
111 MAC_POLICY_EXTERNALIZE(pipe, label, elements, outbuf, outbuflen);
121 MAC_POLICY_INTERNALIZE(pipe, label, string);
/freebsd-current/tests/sys/file/
H A Dflock_helper.c183 * test. We use a pipe to communicate with the child.
191 if (pipe(pfd) < 0)
192 err(1, "pipe");
212 err(1, "writing to pipe (child)");
222 err(1, "reading from pipe (child)");
254 * test. We use a pipe to communicate with the child.
262 if (pipe(pfd) < 0)
263 err(1, "pipe");
283 err(1, "writing to pipe (child)");
293 err(1, "reading from pipe (chil
[all...]
/freebsd-current/sys/netpfil/ipfw/
H A Dip_fw_table_value.c109 _MCPY(pipe, IPFW_VTYPE_PIPE);
608 v->pipe = value;
645 v.pipe = iv->pipe;
672 iv.pipe = v->pipe;
/freebsd-current/contrib/netbsd-tests/lib/libc/sys/
H A Dt_poll.c103 pipe(pf);
162 ATF_REQUIRE_EQ(pipe(fds), 0);
171 * of our pipe.
180 /* Check that the write end of the pipe as reported as ready. */
189 /* Check that only the write end of the pipe as reported as ready. */
198 /* Write data to our pipe. */
201 /* Check that both ends of our pipe are reported as ready. */
252 ATF_REQUIRE_EQ(pipe(fds), 0);
265 * of our pipe.
274 /* Check that the write end of the pipe a
[all...]
H A Dt_pipe.c71 atf_tc_set_md_var(tc, "descr", "Checks that writing to pipe "
95 RL(pipe(pp));
148 /* Close the pipe, so that child would stop reading */
H A Dt_posix_fadvise.c99 RL(pipe(pipe_fds));
/freebsd-current/contrib/llvm-project/clang/lib/Lex/
H A DTokenConcatenation.cpp82 TokenInfo[tok::pipe ] |= aci_custom_firstchar;
116 TokenInfo[tok::pipe ] |= aci_avoid_equal; // |=
283 case tok::pipe: // ||
/freebsd-current/contrib/capsicum-test/
H A Dprocdesc.cc113 EXPECT_OK(pipe(pipefds));
239 if (verbose) fprintf(stderr, " subthread started: pipe=%p\n", arg);
251 EXPECT_EQ(0, pipe(pipefds));
257 // Wait for the subthread startup using another pipe.
259 EXPECT_EQ(0, pipe(thread_pipefds));
310 // when it receives anything on a pipe.
316 EXPECT_OK(pipe(pipes));
323 // Child process: blocking-read an int from the pipe then exit with that value.
326 if (verbose) fprintf(stderr, " [%d] child of %d waiting for value on pipe\n", getpid_(), getppid());
328 if (verbose) fprintf(stderr, " [%d] got value %d on pipe, exitin
[all...]
/freebsd-current/contrib/netbsd-tests/lib/librumphijack/
H A Dh_client.c59 if (pipe(pipefd) == -1)
60 err(EXIT_FAILURE, "pipe");
/freebsd-current/sys/contrib/openzfs/cmd/zed/
H A Dzed_log.c63 * Create pipe for communicating daemonization status between the parent and
73 if (pipe(_ctx.pipe_fd) < 0)
74 zed_log_die("Failed to create daemonize pipe in PID %d: %s",
79 * Close the read-half of the daemonize pipe.
82 * the child will never read from this pipe.
94 "Failed to close reads on daemonize pipe in PID %d: %s",
101 * Close the write-half of the daemonize pipe.
104 * parent will never write to this pipe.
119 "Failed to close writes on daemonize pipe in PID %d: %s",
126 * Block on reading from the daemonize pipe unti
[all...]
/freebsd-current/contrib/bmake/mk/sys/
H A DLinux.mk30 CC ?= gcc -pipe
34 CC ?= cc -pipe
/freebsd-current/contrib/tcp_wrappers/
H A Dsafe_finger.c142 /* pipe_stdin - pipe stdin through program (from my ANSI to OLD C converter) */
152 * The code that sets up the pipe requires that file descriptors 0,1,2
164 * Set up the pipe that interposes the command into our standard input
168 if (pipe(pipefds))
169 perror_exit("pipe");
177 (void) close(1); /* connect stdout to pipe */
186 (void) close(0); /* connect stdin to pipe */

Completed in 246 milliseconds

1234567891011>>