Home
last modified time | relevance | path

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

/third_party/lwip/src/core/
Dtcp_out.c392 struct pbuf *concat_p = NULL; in tcp_write() local
540 …if ((concat_p = tcp_pbuf_prealloc(PBUF_RAW, seglen, space, &oversize, pcb, apiflags, 1)) == NULL) { in tcp_write()
549 …TCP_DATA_COPY2(concat_p->payload, (const u8_t *)arg + pos, seglen, &concat_chksum, &concat_chksum_… in tcp_write()
553 queuelen += pbuf_clen(concat_p); in tcp_write()
564 if ((concat_p = pbuf_alloc(PBUF_RAW, seglen, PBUF_ROM)) == NULL) { in tcp_write()
570 ((struct pbuf_rom *)concat_p)->payload = (const u8_t *)arg + pos; in tcp_write()
571 queuelen += pbuf_clen(concat_p); in tcp_write()
735 if (concat_p != NULL) { in tcp_write()
738 pbuf_cat(last_unsent->p, concat_p); in tcp_write()
739 last_unsent->len += concat_p->tot_len; in tcp_write()
[all …]