Searched refs:tcp_write (Results  1 – 7 of 7) sorted by relevance
| /lib/liblwip/test/unit/tcp/ | 
| D | test_tcp.c | 157   err = tcp_write(pcb, data1, sizeof(data1), TCP_WRITE_FLAG_COPY);  in START_TEST() 171   err = tcp_write(pcb, data2, sizeof(data2), TCP_WRITE_FLAG_COPY);  in START_TEST() 185   err = tcp_write(pcb, data3, sizeof(data3), TCP_WRITE_FLAG_COPY);  in START_TEST() 200   err = tcp_write(pcb, data4, sizeof(data4), TCP_WRITE_FLAG_COPY);  in START_TEST() 212   err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY);  in START_TEST() 223       err = tcp_write(pcb, data6, TCP_MSS, TCP_WRITE_FLAG_COPY);  in START_TEST() 235   err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY);  in START_TEST() 240   err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY);  in START_TEST() 245   err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY);  in START_TEST() 250   err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY);  in START_TEST() [all …] 
 | 
| /lib/liblwip/ | 
| D | UPGRADING | 67        prevent creating many small pbufs when calling tcp_write with many small 69        space is used for later calls to tcp_write. 72        in tcp_write/udp_send.
  | 
| D | CHANGELOG | 406     in tcp_write. 418     calling tcp_write with many small blocks of data. Instead, pbufs are 420     tcp_write. 778     into multiple calls to tcp_write.    
  | 
| /lib/liblwip/doc/ | 
| D | rawapi.txt | 185 tcp_write(). When the data is successfully transmitted to the remote 189 - err_t tcp_write(struct tcp_pcb *pcb, const void *dataptr, u16_t len, 200     the PSH flag is set in the last segment created by this call to tcp_write. 203   The tcp_write() function will fail and return ERR_MEM if the length 256 if a call to tcp_write() has failed because memory wasn't available, 257 the application may use the polling functionality to call tcp_write() 508 Also, data passed to tcp_write without the copy-flag must not be changed!
  | 
| /lib/liblwip/src/include/lwip/ | 
| D | tcp.h | 358 err_t            tcp_write   (struct tcp_pcb *pcb, const void *dataptr, u16_t len,
  | 
| /lib/liblwip/src/core/ | 
| D | tcp_out.c | 354 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags)  in tcp_write()  function
  | 
| /lib/liblwip/src/api/ | 
| D | api_msg.c | 1270     err = tcp_write(conn->pcb.tcp, dataptr, len, apiflags);
  |