Home
last modified time | relevance | path

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

/external/syslinux/core/lwip/src/core/
Dtcp_out.c217 u16_t *oversize, struct tcp_pcb *pcb, u8_t apiflags, in tcp_pbuf_prealloc() argument
226 LWIP_UNUSED_ARG(apiflags); in tcp_pbuf_prealloc()
243 if ((apiflags & TCP_WRITE_FLAG_MORE) || in tcp_pbuf_prealloc()
351 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) in tcp_write() argument
372 apiflags |= TCP_WRITE_FLAG_COPY; in tcp_write()
376 (void *)pcb, arg, len, (u16_t)apiflags)); in tcp_write()
469 if (apiflags & TCP_WRITE_FLAG_COPY) { in tcp_write()
471 …if ((concat_p = tcp_pbuf_prealloc(PBUF_RAW, seglen, space, &oversize, pcb, apiflags, 1)) == NULL) { in tcp_write()
527 if (apiflags & TCP_WRITE_FLAG_COPY) { in tcp_write()
530 …buf_prealloc(PBUF_TRANSPORT, seglen + optlen, pcb->mss, &oversize, pcb, apiflags, queue == NULL)) … in tcp_write()
[all …]
/external/syslinux/core/lwip/src/include/lwip/
Dapi_msg.h91 u8_t apiflags; member
Dapi.h234 u8_t apiflags);
Dtcp.h357 u8_t apiflags);
/external/syslinux/core/lwip/src/api/
Dapi_lib.c588 netconn_write(struct netconn *conn, const void *dataptr, size_t size, u8_t apiflags) in netconn_write() argument
604 msg.msg.msg.w.apiflags = apiflags; in netconn_write()
Dapi_msg.c1202 (conn->current_msg->msg.w.apiflags & NETCONN_DONTBLOCK);
1203 u8_t apiflags = conn->current_msg->msg.w.apiflags; local
1219 apiflags |= TCP_WRITE_FLAG_MORE;
1230 apiflags |= TCP_WRITE_FLAG_MORE;
1238 err = tcp_write(conn->pcb.tcp, dataptr, len, apiflags);
/external/syslinux/core/lwip/
DCHANGELOG1362 Note that previous "copy" parameter for "write" APIs is now called "apiflags".