HomeSort by: relevance | last modified time | path
    Searched refs:EPIPE (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/usr.bin/nc/
atomicio.c 62 errno = EPIPE;
  /src/lib/librumpuser/
rumpuser_errtrans.c 120 #ifdef EPIPE
121 case EPIPE : return 32;
rumpuser_daemonize.c 170 rv = EPIPE;
sp_common.c 336 if (errno == EPIPE)
  /src/sys/rump/include/rump/
rumperrno2host.h 144 #ifdef EPIPE
146 return EPIPE;
  /src/sys/sys/
errno.h 74 #define EPIPE 32 /* Broken pipe */
  /src/tests/dev/md/
h_mdserv.c 48 error = EPIPE;
  /src/tests/lib/libc/gen/execve/
t_execve.c 93 if (write(fd[1], (char[]){0}, 1) == -1 && errno != EPIPE)
  /src/sys/nfs/
nfs_clntsocket.c 184 * received our request, set EPIPE so that
189 error = EPIPE;
206 error = EPIPE;
236 error = EPIPE;
263 error = EPIPE;
270 if (error != EPIPE)
304 error = EPIPE;
695 if (!error || error == EPIPE || error == EWOULDBLOCK)
nfs_socket.c 464 * - return EPIPE if a connection is lost for connection based sockets (TCP...)
515 if (error != EPIPE)
543 error != EWOULDBLOCK && error != EPIPE &&
  /src/sys/external/bsd/acpica/dist/include/
acclib.h 199 #define EPIPE 32 /* Broken pipe */
  /src/tests/lib/libc/sys/
t_poll.c 581 * with EPIPE/SIGPIPE, and thus POLLOUT must be set. POLLHUP
603 * Write should fail with EPIPE/SIGPIPE now, or EIO for
614 check_pollclosed_delayed_write(writefd, readfd, POLLOUT, EPIPE);
796 * with EPIPE/SIGPIPE, and thus POLLOUT must be set. POLLHUP
811 * Write should fail with EPIPE/SIGPIPE now -- and continue to
1099 check_pollclosed_immediate_write(writefd, readfd, POLLOUT, EPIPE);
1114 check_pollclosed_immediate_write(writefd, readfd, POLLOUT, EPIPE);
1243 check_pollclosed_immediate_write(writefd, readfd, POLLOUT, EPIPE);
1258 check_pollclosed_immediate_write(writefd, readfd, POLLOUT, EPIPE);
1395 check_pollclosed_immediate_write(writefd, readfd, POLLOUT, EPIPE);
    [all...]
t_write.c 108 atf_tc_set_md_var(tc, "descr", "Checks for EPIPE from write(2)");
124 if (write(fds[1], "x", 1) != -1 || errno != EPIPE)
125 atf_tc_fail_nonfatal("expected EPIPE but write(2) succeeded");
  /src/sys/dev/
kttcp.c 181 if (error == EPIPE)
231 snderr(EPIPE);
318 snderr(EPIPE);
  /src/tests/include/
t_errno.c 633 #ifdef EPIPE
638 atf_tc_fail_nonfatal("EPIPE not defined");
  /src/sys/kern/
sys_generic.c 357 if (error == EPIPE && !(fp->f_flag & FNOSIGPIPE)) {
481 if (error == EPIPE && !(fp->f_flag & FNOSIGPIPE)) {
sys_pipe.c 586 return EPIPE;
705 error = EPIPE;
728 * Don't return EPIPE if I/O was successful
730 if (error == EPIPE && bp->cnt == 0 && uio->uio_resid == 0)
  /src/sys/fs/nfs/common/
nfs_lock.c 372 * for an answer from a more recent request. We return an EPIPE if
382 return (EPIPE);
  /src/usr.sbin/nfsd/
nfsd.c 379 else if (errno == EPIPE)
  /src/usr.bin/ftp/
ftp.c 834 if (errno != EPIPE)
870 if (errno != EPIPE)
1098 if (errno != EPIPE)
1158 if (errno != EPIPE)
ssl.c 140 errno = EPIPE;
  /src/tests/lib/libc/gen/posix_spawn/
t_spawn.c 544 if (write(fd[1], (char[]){0}, 1) == -1 && errno != EPIPE)
  /src/sys/external/bsd/dwc2/dist/
dwc2_hcdintr.c 120 if (qtd->urb->status != -EPIPE && qtd->urb->status != -EREMOTEIO) {
1173 dwc2_host_complete(hsotg, qtd, -EPIPE);
1177 dwc2_host_complete(hsotg, qtd, -EPIPE);
  /src/share/examples/refuse/ian/libfetch/
common.c 552 errno = EPIPE;
  /src/usr.sbin/perfused/
msg.c 591 case EPIPE:

Completed in 26 milliseconds

1 2