Searched refs:apiflags (Results 1 - 6 of 6) sorted by relevance
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | api_msg.h | 91 u8_t apiflags; member in struct:api_msg_msg::__anon14902::__anon14906
|
H A D | api.h | 266 u8_t apiflags, size_t *bytes_written); 267 #define netconn_write(conn, dataptr, size, apiflags) \ 268 netconn_write_partly(conn, dataptr, size, apiflags, NULL)
|
H A D | tcp.h | 377 /* Flags for "apiflags" parameter in tcp_write */ 382 u8_t apiflags);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | tcp_out.c | 216 * @param apiflags API flags given to tcp_write. 223 u16_t *oversize, struct tcp_pcb *pcb, u8_t apiflags, 232 LWIP_UNUSED_ARG(apiflags); 249 if ((apiflags & TCP_WRITE_FLAG_MORE) || 351 * @param apiflags combination of following flags : 357 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) argument 380 apiflags |= TCP_WRITE_FLAG_COPY; 383 LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_write(pcb=%p, data=%p, len=%"U16_F", apiflags=%"U16_F")\n", 384 (void *)pcb, arg, len, (u16_t)apiflags)); 477 if (apiflags 222 tcp_pbuf_prealloc(pbuf_layer layer, u16_t length, u16_t max_length, u16_t *oversize, struct tcp_pcb *pcb, u8_t apiflags, u8_t first_seg) argument [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/src/api/ |
H A D | api_lib.c | 600 * @param apiflags combination of following flags : 609 u8_t apiflags, size_t *bytes_written) 620 dontblock = netconn_is_nonblocking(conn) || (apiflags & NETCONN_DONTBLOCK); 630 msg.msg.msg.w.apiflags = apiflags; 608 netconn_write_partly(struct netconn *conn, const void *dataptr, size_t size, u8_t apiflags, size_t *bytes_written) argument
|
H A D | api_msg.c | 1239 (conn->current_msg->msg.w.apiflags & NETCONN_DONTBLOCK); 1240 u8_t apiflags = conn->current_msg->msg.w.apiflags; local 1272 apiflags |= TCP_WRITE_FLAG_MORE; 1289 apiflags |= TCP_WRITE_FLAG_MORE; 1293 err = tcp_write(conn->pcb.tcp, dataptr, len, apiflags);
|
Completed in 629 milliseconds