Home
last modified time | relevance | path

Searched refs:apiflags (Results 1 – 8 of 8) sorted by relevance

/lib/liblwip/src/include/lwip/
Dapi.h239 u8_t apiflags, size_t *bytes_written);
240 #define netconn_write(conn, dataptr, size, apiflags) \ argument
241 netconn_write_partly(conn, dataptr, size, apiflags, NULL)
Dapi_msg.h91 u8_t apiflags; member
Dtcp.h359 u8_t apiflags);
/lib/liblwip/src/core/
Dtcp_out.c220 u16_t *oversize, struct tcp_pcb *pcb, u8_t apiflags, in tcp_pbuf_prealloc() argument
229 LWIP_UNUSED_ARG(apiflags); in tcp_pbuf_prealloc()
246 if ((apiflags & TCP_WRITE_FLAG_MORE) || in tcp_pbuf_prealloc()
354 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) in tcp_write() argument
377 apiflags |= TCP_WRITE_FLAG_COPY; in tcp_write()
381 (void *)pcb, arg, len, (u16_t)apiflags)); in tcp_write()
474 if (apiflags & TCP_WRITE_FLAG_COPY) { in tcp_write()
476 …if ((concat_p = tcp_pbuf_prealloc(PBUF_RAW, seglen, space, &oversize, pcb, apiflags, 1)) == NULL) { in tcp_write()
532 if (apiflags & TCP_WRITE_FLAG_COPY) { in tcp_write()
535 …uf_prealloc(PBUF_TRANSPORT, seglen + optlen, mss_local, &oversize, pcb, apiflags, queue == NULL)) … in tcp_write()
[all …]
/lib/liblwip/src/api/
Dapi_lib.c599 u8_t apiflags, size_t *bytes_written) in netconn_write_partly() argument
610 dontblock = netconn_is_nonblocking(conn) || (apiflags & NETCONN_DONTBLOCK); in netconn_write_partly()
621 msg.msg.msg.w.apiflags = apiflags; in netconn_write_partly()
Dapi_msg.c1216 (conn->current_msg->msg.w.apiflags & NETCONN_DONTBLOCK);
1217 u8_t apiflags = conn->current_msg->msg.w.apiflags; local
1249 apiflags |= TCP_WRITE_FLAG_MORE;
1266 apiflags |= TCP_WRITE_FLAG_MORE;
1270 err = tcp_write(conn->pcb.tcp, dataptr, len, apiflags);
/lib/liblwip/doc/
Drawapi.txt190 u8_t apiflags)
193 the data is passed as the len parameter. The apiflags can be one or more of:
/lib/liblwip/
DCHANGELOG1661 Note that previous "copy" parameter for "write" APIs is now called "apiflags".