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

123

/external/chromium/net/base/
H A Dnet_errors_posix.cc30 case EPIPE:
/external/kernel-headers/original/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/openssh/
H A Datomicio.c73 errno = EPIPE;
130 errno = EPIPE;
H A Dmsg.c73 if (errno != EPIPE)
H A Dentropy.c134 if (errno == EPIPE && errors < 10) {
145 if (errno == EPIPE && errors < 10) {
H A Droaming_common.c149 (ret == 0 || (ret == -1 && errno == EPIPE))) {
/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/chromium_org/base/posix/
H A Dunix_domain_socket_linux_unittest.cc74 ASSERT_EQ(EPIPE, errno);
/external/chromium_org/device/bluetooth/
H A Dbluetooth_socket_chromeos.cc140 if (errno == EPIPE || errno == ECONNRESET || errno == ENOTCONN) {
/external/mdnsresponder/mDNSShared/
H A Ddnssd_ipc.h73 # define dnssd_EPIPE EPIPE
/external/llvm/include/llvm/Support/
H A Dsystem_error.h135 broken_pipe, // EPIPE
264 # ifndef EPIPE
265 # define EPIPE 32 macro
503 broken_pipe = EPIPE,
/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/linux/
H A Dalsa_input.cc142 if (original_error == -EPIPE) { // Buffer underrun/overrun.
/external/chromium_org/net/tools/testserver/
H A Dtestserver_base.py80 pipe_err = 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/tinyalsa/
H A Dpcm.c414 if (errno == EPIPE) {
416 * allowed to do so. Otherwise, simply allow the EPIPE error to
420 return -EPIPE;
449 if (errno == EPIPE) {
925 return -EPIPE;
/external/chromium_org/ipc/
H A Dipc_channel_posix.cc453 if (errno == EPIPE) {
772 } else if (errno == ECONNRESET || errno == EPIPE) {
H A Dipc_channel_nacl.cc276 // The trusted side should only ever give us an error of EPIPE. We
278 DCHECK(errno == EPIPE);
/external/chromium_org/net/socket/
H A Dunix_domain_socket_posix_unittest.cc333 ASSERT_EQ(EPIPE, errno);

Completed in 1849 milliseconds

123