Lines Matching refs:apiflags
213 * @param apiflags API flags given to tcp_write.
220 u16_t *oversize, struct tcp_pcb *pcb, u8_t apiflags,
229 LWIP_UNUSED_ARG(apiflags);
246 if ((apiflags & TCP_WRITE_FLAG_MORE) ||
348 * @param apiflags combination of following flags :
354 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags)
377 apiflags |= TCP_WRITE_FLAG_COPY;
380 LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_write(pcb=%p, data=%p, len=%"U16_F", apiflags=%"U16_F")\n",
381 (void *)pcb, arg, len, (u16_t)apiflags));
474 if (apiflags & TCP_WRITE_FLAG_COPY) {
476 if ((concat_p = tcp_pbuf_prealloc(PBUF_RAW, seglen, space, &oversize, pcb, apiflags, 1)) == NULL) {
532 if (apiflags & TCP_WRITE_FLAG_COPY) {
535 if ((p = tcp_pbuf_prealloc(PBUF_TRANSPORT, seglen + optlen, mss_local, &oversize, pcb, apiflags, queue == NULL)) == NULL) {
688 if (seg != NULL && seg->tcphdr != NULL && ((apiflags & TCP_WRITE_FLAG_MORE)==0)) {