Searched refs:EPIPE (Results 1 - 25 of 48) sorted by relevance

12

/external/kernel-headers/original/uapi/asm-generic/
H A Derrno-base.h35 #define EPIPE 32 /* Broken pipe */ macro
/external/bison/lib/
H A Dcloseout.c48 /* Specify the reaction to an EPIPE error during the closing of stdout:
62 EPIPE occurs when writing to a pipe or socket that has no readers now,
67 this case, an EPIPE is an indication of a premature termination of the
72 first. In this case, an EPIPE is an indication that the pipe writer can
74 EPIPE is part of the normal pipe/socket shutdown protocol in this case,
110 && !(ignore_EPIPE && errno == EPIPE))
/external/chromium_org/third_party/libusb/src/msvc/
H A Derrno.h56 #define EPIPE 32 /* Broken pipe */ macro
/external/netcat/
H A Datomicio.c62 errno = EPIPE;
/external/valgrind/main/none/tests/
H A Dsyscall-restart1.c56 if (write(fds[1], "x", 1) != -1 || errno != EPIPE)
57 fprintf(stderr, "FAIL: expected write to fail with EPIPE, not %d\n", errno);
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dneed_errno.h112 #define EPIPE 32 macro
/external/chromium_org/net/base/
H A Dnet_errors_posix.cc37 case EPIPE:
/external/tcpdump/win32/Include/
H A Derrno.h35 #define EPIPE 32 /* Broken pipe */ macro
/external/mdnsresponder/mDNSShared/
H A Ddnssd_ipc.h73 # define dnssd_EPIPE EPIPE
/external/chromium_org/mojo/embedder/
H A Dplatform_channel_pair_posix_unittest.cc94 if (errno != EPIPE)
95 PLOG(WARNING) << "write (expected EPIPE)";
102 if (errno != EPIPE)
103 PLOG(WARNING) << "write (expected EPIPE)";
/external/libcxx/test/diagnostics/errno/
H A Dcerrno.pass.cpp289 #ifndef EPIPE
290 #error EPIPE not defined
/external/chromium_org/base/posix/
H A Dunix_domain_socket_linux_unittest.cc76 ASSERT_EQ(EPIPE, errno);
/external/harfbuzz_ng/test/shaping/
H A Dhb_test_tools.py144 if e.errno != errno.EPIPE:
355 if e.errno != errno.EPIPE:
370 if e.errno != errno.EPIPE:
399 if e.errno != errno.EPIPE:
/external/chromium_org/net/third_party/nss/ssl/
H A Dunix_err.c388 PR_SetError(PR_CONNECT_RESET_ERROR, EPIPE);
499 case EPIPE: prError = PR_CONNECT_RESET_ERROR; break;
/external/chromium_org/media/audio/alsa/
H A Dalsa_input.cc144 if (original_error == -EPIPE) { // Buffer underrun/overrun.
/external/chromium_org/net/tools/testserver/
H A Dtestserver_base.py85 pipe_err = errno.EPIPE
/external/chromium_org/third_party/skia/experimental/Networking/
H A DSkSockets.cpp202 if (errno == EPIPE) {
/external/dnsmasq/src/
H A Dlog.c194 /* Once a stream socket hits EPIPE, we have to close and re-open
196 if (errno == EPIPE)
/external/libcxx/test/diagnostics/syserr/
H A Derrc.pass.cpp27 static_assert(static_cast<int>(std::errc::broken_pipe) == EPIPE, "");
/external/skia/experimental/Networking/
H A DSkSockets.cpp202 if (errno == EPIPE) {
/external/tinyalsa/
H A Dpcm.c507 if (errno == EPIPE) {
509 * allowed to do so. Otherwise, simply allow the EPIPE error to
513 return -EPIPE;
543 if (errno == EPIPE) {
1168 return -EPIPE;
/external/chromium_org/ipc/
H A Dipc_channel_posix.cc491 if (errno == EPIPE) {
818 } else if (errno == ECONNRESET || errno == EPIPE) {
H A Dipc_channel_nacl.cc291 // The trusted side should only ever give us an error of EPIPE. We
293 DCHECK(errno == EPIPE);
/external/chromium_org/net/socket/
H A Dunix_domain_listen_socket_posix_unittest.cc337 ASSERT_EQ(EPIPE, errno);
/external/qemu/audio/
H A Dalsaaudio.c766 if (avail == -EPIPE) {
804 case -EPIPE:
1136 case -EPIPE:

Completed in 1440 milliseconds

12