Searched refs:tcp_write (Results 1 – 11 of 11) sorted by relevance
/third_party/lwip/test/unit/tcp/ |
D | test_tcp.c | 474 err = tcp_write(pcb, data1, sizeof(data1), TCP_WRITE_FLAG_COPY); in START_TEST() 488 err = tcp_write(pcb, data2, sizeof(data2), TCP_WRITE_FLAG_COPY); in START_TEST() 502 err = tcp_write(pcb, data3, sizeof(data3), TCP_WRITE_FLAG_COPY); in START_TEST() 517 err = tcp_write(pcb, data4, sizeof(data4), TCP_WRITE_FLAG_COPY); in START_TEST() 529 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 540 err = tcp_write(pcb, data6, TCP_MSS, TCP_WRITE_FLAG_COPY); in START_TEST() 552 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 557 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 562 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() 567 err = tcp_write(pcb, data5, sizeof(data5), TCP_WRITE_FLAG_COPY); in START_TEST() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | tcp.c | 250 static int tcp_write(URLContext *h, const uint8_t *buf, int size) in tcp_write() function 318 .url_write = tcp_write,
|
/third_party/lwip/src/include/lwip/ |
D | altcp.h | 186 #define altcp_write tcp_write
|
D | tcp.h | 473 err_t tcp_write (struct tcp_pcb *pcb, const void *dataptr, u16_t len,
|
/third_party/lwip/ |
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.
|
D | CHANGELOG | 338 in tcp_write error path) 376 * tcp_out.c: Optimize passing contiguous nocopy buffers to tcp_write (bug #46290) 1041 * tcp_out.c: fixed bug #37184 tcp_write problem for pcbs in the SYN_SENT state 1605 in tcp_write. 1617 calling tcp_write with many small blocks of data. Instead, pbufs are 1619 tcp_write. 1977 into multiple calls to tcp_write.
|
/third_party/lwip/src/core/ |
D | altcp_tcp.c | 362 return tcp_write(pcb, dataptr, len, apiflags); in altcp_tcp_write()
|
D | tcp_out.c | 390 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) in tcp_write() function
|
/third_party/lwip/src/apps/lwiperf/ |
D | lwiperf.c | 335 err = tcp_write(conn->conn_pcb, txptr, txlen, apiflags); in lwiperf_tcp_client_send_more()
|
/third_party/grpc/src/core/lib/iomgr/ |
D | tcp_posix.cc | 1561 static void tcp_write(grpc_endpoint* ep, grpc_slice_buffer* buf, in tcp_write() function 1683 tcp_write,
|
/third_party/lwip/src/api/ |
D | api_msg.c | 1715 err = tcp_write(conn->pcb.tcp, dataptr, len, apiflags);
|