Searched refs:concat_p (Results 1 – 1 of 1) sorted by relevance
/external/syslinux/core/lwip/src/core/ |
D | tcp_out.c | 353 struct pbuf *concat_p = NULL; in tcp_write() local 471 …if ((concat_p = tcp_pbuf_prealloc(PBUF_RAW, seglen, space, &oversize, pcb, apiflags, 1)) == NULL) { in tcp_write() 480 …TCP_DATA_COPY2(concat_p->payload, (u8_t*)arg + pos, seglen, &concat_chksum, &concat_chksum_swapped… in tcp_write() 486 if ((concat_p = pbuf_alloc(PBUF_RAW, seglen, PBUF_ROM)) == NULL) { in tcp_write() 498 concat_p->payload = (u8_t*)arg + pos; in tcp_write() 502 queuelen += pbuf_clen(concat_p); in tcp_write() 642 if (concat_p != NULL) { in tcp_write() 645 pbuf_cat(last_unsent->p, concat_p); in tcp_write() 646 last_unsent->len += concat_p->tot_len; in tcp_write() 690 if (concat_p != NULL) { in tcp_write() [all …]
|