Home
last modified time | relevance | path

Searched refs:MSG_WAITALL (Results 1 – 7 of 7) sorted by relevance

/Zephyr-Core-2.7.6/samples/subsys/modbus/tcp_gateway/src/
Dmain.c66 rc = recv(client, header, sizeof(header), MSG_WAITALL); in modbus_tcp_connection()
75 rc = recv(client, tmp_adu.data, data_len, MSG_WAITALL); in modbus_tcp_connection()
/Zephyr-Core-2.7.6/tests/net/socket/tls/src/
Dmain.c262 ret = recv(new_sock, rx_buf, sizeof(rx_buf), MSG_WAITALL); in test_v4_msg_waitall()
283 ret = recv(new_sock, rx_buf, sizeof(rx_buf) - 1, MSG_WAITALL); in test_v4_msg_waitall()
340 ret = recv(new_sock, rx_buf, sizeof(rx_buf), MSG_WAITALL); in test_v6_msg_waitall()
361 ret = recv(new_sock, rx_buf, sizeof(rx_buf) - 1, MSG_WAITALL); in test_v6_msg_waitall()
/Zephyr-Core-2.7.6/samples/subsys/modbus/tcp_server/src/
Dmain.c190 rc = recv(client, header, sizeof(header), MSG_WAITALL); in modbus_tcp_connection()
199 rc = recv(client, tmp_adu.data, data_len, MSG_WAITALL); in modbus_tcp_connection()
/Zephyr-Core-2.7.6/include/posix/sys/
Dsocket.h33 #define MSG_WAITALL ZSOCK_MSG_WAITALL macro
/Zephyr-Core-2.7.6/tests/net/socket/tcp/src/
Dmain.c775 ret = recv(new_sock, rx_buf, sizeof(rx_buf), MSG_WAITALL); in test_v4_msg_waitall()
796 ret = recv(new_sock, rx_buf, sizeof(rx_buf) - 1, MSG_WAITALL); in test_v4_msg_waitall()
849 ret = recv(new_sock, rx_buf, sizeof(rx_buf), MSG_WAITALL); in test_v6_msg_waitall()
870 ret = recv(new_sock, rx_buf, sizeof(rx_buf) - 1, MSG_WAITALL); in test_v6_msg_waitall()
/Zephyr-Core-2.7.6/include/net/
Dsocket.h802 #define MSG_WAITALL ZSOCK_MSG_WAITALL macro
/Zephyr-Core-2.7.6/doc/releases/
Drelease-notes-2.6.rst763 * Added MSG_WAITALL receive socket option flag.
2189 * :github:`13091` - sockets: Implement MSG_WAITALL flag