Home
last modified time | relevance | path

Searched refs:send (Results 1 – 25 of 26) sorted by relevance

12

/components/drivers/can/
A DKconfig21 int "Number of CAN send queues"
24 Set the number of CAN send queues.
27 int "CAN send message timeout"
30 Set the timeout for CAN send messages.
/components/net/sal/include/
A Dsal_tls.h45 int (*send)(void *sock, const void *data, size_t size); member
/components/net/sal/include/socket/sys_socket/sys/
A Dsocket.h40 int send(int s, const void *dataptr, size_t size, int flags);
60 #define send(s, dataptr, size, flags) sal_sendto(s, dataptr, size, flags, NULL…
/components/drivers/include/drivers/
A Dmailbox.h37 rt_err_t (*send)(struct rt_mbox_chan *, const void *data); member
/components/drivers/spi/
A Ddev_spi_msd.c180 uint8_t send = DUMMY; in _send_cmd() local
183 message.send_buf = &send; in _send_cmd()
274 uint8_t send, recv; in _wait_token() local
280 send = DUMMY; in _wait_token()
281 message.send_buf = &send; in _wait_token()
308 uint8_t send, recv; in _wait_ready() local
312 send = DUMMY; in _wait_ready()
314 message.send_buf = &send; in _wait_ready()
/components/net/sal/socket/
A Dnet_sockets.c554 int send(int s, const void *dataptr, size_t size, int flags) in send() function
560 RTM_EXPORT(send);
/components/net/lwip/
A DKconfig159 int "the size of send buffer"
163 int "the size of TCP send window"
226 int "Enable send timeout for sockets/netconns and SO_SNDTIMEO processing."
/components/net/lwip/lwip-2.0.3/src/include/lwip/
A Dsockets.h466 #define lwip_send send
538 #define send(s,dataptr,size,flags) lwip_send(s,dataptr,size,flags) macro
/components/net/at/at_socket/
A Dat_socket.h188 #define send(socket, data, size, flags) at_send(socket, data, size, flags) macro
/components/drivers/mailbox/
A Dmailbox-pic.c116 .send = pic_mbox_send,
A Dmailbox.c128 err = ctrl->ops->send(chan, data); in rt_mbox_send()
/components/net/lwip/lwip-2.1.2/src/include/lwip/
A Dsockets.h564 #define lwip_send send
657 #define send(s,dataptr,size,flags) lwip_send(s,dataptr,size,flags) macro
/components/net/sal/src/
A Dsal_socket.c909 if (SAL_SOCKOPS_PROTO_TLS_VALID(sock, send)) in sal_sendmsg()
913 if ((ret = proto_tls->ops->send(sock->user_data_tls, message, flags)) < 0) in sal_sendmsg()
1010 if (SAL_SOCKOPS_PROTO_TLS_VALID(sock, send)) in sal_sendto()
1014 if ((ret = proto_tls->ops->send(sock->user_data_tls, dataptr, size)) < 0) in sal_sendto()
/components/net/lwip/lwip-2.0.3/doc/
A Dcontrib.txt36 1. Make sure you are reporting bugs or send patches against the latest
A Drawapi.txt12 to be used without an operating system that implements zero-copy send and
225 of the data exceeds the current send buffer size or if the length of
485 remain unchanged until sent. Because the send- (or write-)functions return
489 This implies that PBUF_RAM/PBUF_POOL pbufs passed to raw-API send functions
/components/net/lwip/lwip-2.1.2/doc/
A Dcontrib.txt36 1. Make sure you are reporting bugs or send patches against the latest
/components/net/lwip/lwip-1.4.1/src/include/lwip/
A Dsockets.h360 #define send(a,b,c,d) lwip_send(a,b,c,d) macro
/components/net/lwip/lwip-2.0.3/
A DCHANGELOG61 to send FIN from tcp_fasttmr
142 * api_lib.c: fixed bug #49725 (send-timeout: netconn_write() can return
577 after SYN to ensure the correct send window is used
982 send (TCP only, bug #33820)
1046 send MSS
1122 windows (bug #34176 select after non-blocking send times out)
1382 blocking send operation)
2829 changes on low memory or empty send-buffer.
3057 prevented from sending by a small send window, not just a zero
3058 send window.
[all …]
/components/net/lwip/lwip-1.4.1/doc/
A Dcontrib.txt36 1. Make sure you are reporting bugs or send patches against the latest
A Drawapi.txt204 of the data exceeds the current send buffer size or if the length of
497 remain unchanged until sent. Because the send- (or write-)functions return
501 This implies that PBUF_RAM/PBUF_POOL pbufs passed to raw-API send functions
/components/net/lwip/lwip-2.1.2/
A DCHANGELOG33 * ip4.c: don't send 127.* to default netif (bug #54670)
314 to send FIN from tcp_fasttmr
830 after SYN to ensure the correct send window is used
1235 send (TCP only, bug #33820)
1299 send MSS
1375 windows (bug #34176 select after non-blocking send times out)
1635 blocking send operation)
3082 changes on low memory or empty send-buffer.
3310 prevented from sending by a small send window, not just a zero
3311 send window.
[all …]
/components/net/lwip/lwip-1.4.1/
A DCHANGELOG26 send (TCP only, bug #33820)
90 send MSS
103 * etharp.c: fixed bug #35595: Impossible to send broadcast without a gateway
166 windows (bug #34176 select after non-blocking send times out)
426 blocking send operation)
759 * etharp.c: Fixed bug #29087: etharp: don't send packets for LinkLocal-
1873 changes on low memory or empty send-buffer.
1915 (defaulting to off for now) that can be set to 0 to send fragmented
2101 prevented from sending by a small send window, not just a zero
2102 send window.
[all …]
/components/net/lwip/lwip-2.0.3/src/netif/ppp/
A DPPPD_FOLLOWUP16 - LCP adaptive echo, so that we don't send LCP echo request if we
470 2015-08-14 - Merge branch 'send-padt-on-disconnect' of git://github.com/farnz/ppp
/components/net/lwip/lwip-2.1.2/src/netif/ppp/
A DPPPD_FOLLOWUP16 - LCP adaptive echo, so that we don't send LCP echo request if we
470 2015-08-14 - Merge branch 'send-padt-on-disconnect' of git://github.com/farnz/ppp
/components/drivers/usb/cherryusb/
A DREADME.md31 - There is no limit to the length of send and receive, the user does not need to care about the USB…

Completed in 65 milliseconds

12