/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/test/unit/tcp/ |
H A 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 …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/test/unit/tcp/ |
H A D | test_tcp.c | 231 err = tcp_write(pcb, data1, sizeof(data1), TCP_WRITE_FLAG_COPY); in START_TEST() 245 err = tcp_write(pcb, data2, sizeof(data2), TCP_WRITE_FLAG_COPY); in START_TEST() 259 err = tcp_write(pcb, data3, sizeof(data3), TCP_WRITE_FLAG_COPY); in START_TEST() 274 err = tcp_write(pcb, data4, sizeof(data4), TCP_WRITE_FLAG_COPY); in START_TEST() 286 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 297 err = tcp_write(pcb, data6, TCP_MSS, TCP_WRITE_FLAG_COPY); in START_TEST() 309 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 314 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 319 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 324 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/test/unit/tcp/ |
H A D | test_tcp.c | 427 err = tcp_write(pcb, data1, sizeof(data1), TCP_WRITE_FLAG_COPY); in START_TEST() 441 err = tcp_write(pcb, data2, sizeof(data2), TCP_WRITE_FLAG_COPY); in START_TEST() 455 err = tcp_write(pcb, data3, sizeof(data3), TCP_WRITE_FLAG_COPY); in START_TEST() 470 err = tcp_write(pcb, data4, sizeof(data4), TCP_WRITE_FLAG_COPY); in START_TEST() 482 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 493 err = tcp_write(pcb, data6, TCP_MSS, TCP_WRITE_FLAG_COPY); in START_TEST() 505 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 510 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 515 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 520 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/ |
H A 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.
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/doc/ |
H A 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!
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/doc/ |
H A D | rawapi.txt | 206 tcp_write(). When the data is successfully transmitted to the remote 210 - err_t tcp_write(struct tcp_pcb *pcb, const void *dataptr, u16_t len, 221 the PSH flag is set in the last segment created by this call to tcp_write. 224 The tcp_write() function will fail and return ERR_MEM if the length 277 if a call to tcp_write() has failed because memory wasn't available, 278 the application may use the polling functionality to call tcp_write() 496 Also, data passed to tcp_write without the copy-flag must not be changed!
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/ |
H A D | altcp.h | 181 #define altcp_write tcp_write
|
H A D | tcp.h | 473 err_t tcp_write (struct tcp_pcb *pcb, const void *dataptr, u16_t len,
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/ |
H A D | UPGRADING | 158 prevent creating many small pbufs when calling tcp_write with many small 160 space is used for later calls to tcp_write. 163 in tcp_write/udp_send.
|
H A D | CHANGELOG | 66 in tcp_write error path) 104 * tcp_out.c: Optimize passing contiguous nocopy buffers to tcp_write (bug #46290) 769 * tcp_out.c: fixed bug #37184 tcp_write problem for pcbs in the SYN_SENT state 1333 in tcp_write. 1345 calling tcp_write with many small blocks of data. Instead, pbufs are 1347 tcp_write. 1705 into multiple calls to tcp_write.
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/ |
H A D | tcp.h | 358 err_t tcp_write (struct tcp_pcb *pcb, const void *dataptr, u16_t len,
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/ |
H A D | tcp.h | 410 err_t tcp_write (struct tcp_pcb *pcb, const void *dataptr, u16_t len,
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/ |
H A D | UPGRADING | 201 prevent creating many small pbufs when calling tcp_write with many small 203 space is used for later calls to tcp_write. 206 in tcp_write/udp_send.
|
H A D | CHANGELOG | 283 in tcp_write error path) 321 * tcp_out.c: Optimize passing contiguous nocopy buffers to tcp_write (bug #46290) 986 * tcp_out.c: fixed bug #37184 tcp_write problem for pcbs in the SYN_SENT state 1550 in tcp_write. 1562 calling tcp_write with many small blocks of data. Instead, pbufs are 1564 tcp_write. 1922 into multiple calls to tcp_write.
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/core/ |
H A D | altcp_tcp.c | 357 return tcp_write(pcb, dataptr, len, apiflags); in altcp_tcp_write()
|
H A D | tcp_out.c | 390 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) in tcp_write() function
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/apps/mqtt/ |
H A D | mqtt.c | 226 …err = tcp_write(tpcb, mqtt_ringbuf_get_ptr(rb), send_len, TCP_WRITE_FLAG_COPY | (wrap ? TCP_WRITE_… in mqtt_output_send() 231 err = tcp_write(tpcb, mqtt_ringbuf_get_ptr(rb), send_len, TCP_WRITE_FLAG_COPY); in mqtt_output_send()
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/apps/lwiperf/ |
H A D | lwiperf.c | 307 err = tcp_write(conn->conn_pcb, txptr, txlen, apiflags); in lwiperf_tcp_client_send_more()
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/apps/lwiperf/ |
H A D | lwiperf.c | 335 err = tcp_write(conn->conn_pcb, txptr, txlen, apiflags); in lwiperf_tcp_client_send_more()
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/core/ |
H A D | tcp_out.c | 354 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) in tcp_write() function
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/core/ |
H A D | tcp_out.c | 368 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) in tcp_write() function
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/api/ |
H A D | api_msg.c | 1271 err = tcp_write(conn->pcb.tcp, dataptr, len, apiflags);
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/api/ |
H A D | api_msg.c | 1550 err = tcp_write(conn->pcb.tcp, dataptr, len, apiflags);
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/api/ |
H A D | api_msg.c | 1712 err = tcp_write(conn->pcb.tcp, dataptr, len, apiflags);
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/apps/httpd/ |
H A D | httpd.c | 542 err = tcp_write(pcb, ptr, len, apiflags); in http_write()
|