Home
last modified time | relevance | path

Searched refs:ECONNRESET (Results 1 – 12 of 12) sorted by relevance

/device/linaro/bootloader/arm-trusted-firmware/include/stdlib/sys/
Derrno.h118 #define ECONNRESET 54 /* Connection reset by peer */ macro
/device/linaro/bootloader/edk2/StdLib/Include/
Derrno.h116 #define ECONNRESET __ECONNRESET /* 54 Connection reset by peer */ macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dasyncore.py56 from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \
60 _DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE,
Dxmlrpclib.py1266 if i or e.errno not in (errno.ECONNRESET, errno.ECONNABORTED, errno.EPIPE):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Derrnomodule.c533 #ifdef ECONNRESET in initerrno()
534 inscode(d, ds, de, "ECONNRESET", ECONNRESET, "Connection reset by peer"); in initerrno()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
Derrnomodule.c533 #ifdef ECONNRESET in initerrno()
534 inscode(d, ds, de, "ECONNRESET", ECONNRESET, "Connection reset by peer"); in initerrno()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
Derrnomodule.c532 #ifdef ECONNRESET in initerrno()
533 inscode(d, ds, de, "ECONNRESET", ECONNRESET, "Connection reset by peer"); in initerrno()
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dres_send.c481 if (terrno == ECONNRESET && !connreset) { in res_send()
/device/linaro/bootloader/edk2/StdLib/EfiSocketLib/
DTcp4.c393 pSocket->errno = ECONNRESET; in EslTcp4ConnectPoll()
DTcp6.c411 pSocket->errno = ECONNRESET; in EslTcp6ConnectPoll()
DSocket.c4599 pSocket->errno = ECONNRESET; in EslSocketReceive()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_ssl.py846 if expect_success or e.errno != errno.ECONNRESET: