/AliOS-Things-master/components/lwip/lwip2.0.0/api/ |
A D | err.c | 52 EWOULDBLOCK, /* ERR_TIMEOUT -3 Timeout */ 56 EWOULDBLOCK, /* ERR_WOULDBLOCK -7 Operation would block. */
|
A D | sockets.c | 653 sock_set_errno(sock, EWOULDBLOCK); in lwip_accept() 994 sock_set_errno(sock, EWOULDBLOCK); in lwip_recvfrom()
|
/AliOS-Things-master/components/mbedtls/platform/aos/library/ |
A D | net_sockets.c | 268 #if defined EWOULDBLOCK && EWOULDBLOCK != EAGAIN in net_would_block() 269 case EWOULDBLOCK: in net_would_block()
|
/AliOS-Things-master/components/mbedtls/platform/yoc/ |
A D | net_sockets.c | 214 #if defined EWOULDBLOCK && EWOULDBLOCK != EAGAIN in net_would_block() 215 case EWOULDBLOCK: in net_would_block()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/ |
A D | errno.h | 88 #define EWOULDBLOCK EAGAIN /* Operation would block */ macro
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/ |
A D | errno.h | 89 #define EWOULDBLOCK EAGAIN /* Operation would block */ macro
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | net_sockets.c | 300 #if defined EWOULDBLOCK && EWOULDBLOCK != EAGAIN in net_would_block() 301 case EWOULDBLOCK: in net_would_block()
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/fwlib/usb_otg/include/ |
A D | usb_errno.h | 45 #define EWOULDBLOCK EAGAIN /* Operation would block */ macro
|
/AliOS-Things-master/components/minilibc/include/ |
A D | errno-.h | 66 #define EWOULDBLOCK EAGAIN /* Operation would block */ macro
|
/AliOS-Things-master/components/libc_stub/compilers/armlibc/sys/ |
A D | errno_bak.h | 48 #define EWOULDBLOCK EAGAIN /* Operation would block */ macro
|
/AliOS-Things-master/components/libc_stub/compilers/iar/sys/ |
A D | errno.h | 48 #define EWOULDBLOCK EAGAIN /* Operation would block */ macro
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | mperrno.h | 130 #define MP_EWOULDBLOCK EWOULDBLOCK
|
/AliOS-Things-master/components/amp/main/ |
A D | amp_errno.h | 77 #define EWOULDBLOCK EAGAIN /* Operation would block */
|
/AliOS-Things-master/components/ble_host/bt_host/port/aos/include/ |
A D | bt_errno.h | 85 #define EWOULDBLOCK EAGAIN /**< Operation would block */ macro
|
/AliOS-Things-master/components/osal_aos/include/aos/ |
A D | errno.h | 84 #define EWOULDBLOCK EAGAIN /**< Operation would block */
|
/AliOS-Things-master/components/mqtt/MQTTClient-C/ |
A D | MQTTLinux.c | 79 if (errno != EAGAIN && errno != EWOULDBLOCK) in linux_read()
|
/AliOS-Things-master/components/py_engine/adapter/haas/ |
A D | modsocket.c | 533 if (errno != EWOULDBLOCK) { in _socket_read_data() 593 if (r < 0 && errno != EWOULDBLOCK && errno != EINPROGRESS) { in _socket_send() 654 if (ret == -1 && errno != EWOULDBLOCK) { in socket_sendto() 694 if (r < 0 && errno != EWOULDBLOCK && errno != EINPROGRESS) { in socket_stream_write()
|
/AliOS-Things-master/components/py_engine/adapter/haas510/ |
A D | modsocket.c | 557 if (errno != EWOULDBLOCK) { in _socket_read_data() 619 if (r < 0 && errno != EWOULDBLOCK && errno != EINPROGRESS) { in _socket_send() 683 if (ret == -1 && errno != EWOULDBLOCK) { in socket_sendto() 726 if (r < 0 && errno != EWOULDBLOCK && errno != EINPROGRESS) { in socket_stream_write()
|
/AliOS-Things-master/components/py_engine/adapter/haas600/ |
A D | modsocket.c | 514 if (errno != EWOULDBLOCK) { in _socket_read_data() 570 if (r < 0 && errno != EWOULDBLOCK && errno != EINPROGRESS) { in _socket_send() 628 if (ret == -1 && errno != EWOULDBLOCK) { in socket_sendto() 663 if (r < 0 && errno != EWOULDBLOCK && errno != EINPROGRESS) { in socket_stream_write()
|
/AliOS-Things-master/components/netmgr/activation/ |
A D | activation.c | 334 if((errno != EINTR) && (errno != EAGAIN) && (errno != EWOULDBLOCK)) { in activation_report()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ |
A D | af_packet.c | 310 sock_set_errno(sock, EWOULDBLOCK); in packet_recvfrom() 321 sock_set_errno(sock, EWOULDBLOCK); in packet_recvfrom()
|
/AliOS-Things-master/components/SDL2/src/audio/qsa/ |
A D | SDL_qsa_audio.c | 170 if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) { in QSA_PlayDevice()
|
/AliOS-Things-master/components/http/src/ |
A D | http_aos_wrapper.c | 145 … if ((EINTR == err_record) || (EAGAIN == err_record) || (EWOULDBLOCK == err_record) || in http_tcp_recv_wrapper()
|