Home
last modified time | relevance | path

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

/external/grpc-grpc/src/core/lib/iomgr/
Dtcp_posix.cc553 ssize_t sent_length; in tcp_send() local
557 sent_length = sendmsg(fd, msg, SENDMSG_FLAGS); in tcp_send()
558 } while (sent_length < 0 && errno == EINTR); in tcp_send()
559 return sent_length; in tcp_send()
570 ssize_t* sent_length, grpc_error** error);
578 ssize_t* sent_length, in tcp_write_with_timestamps() argument
610 *sent_length = length; in tcp_write_with_timestamps()
765 ssize_t* sent_length, in tcp_write_with_timestamps() argument
788 ssize_t sent_length; in tcp_flush() local
824 if (!tcp_write_with_timestamps(tcp, &msg, sending_length, &sent_length, in tcp_flush()
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/
Dtcp_posix.cc940 ssize_t sent_length; in tcp_send() local
944 sent_length = sendmsg(fd, msg, SENDMSG_FLAGS | additional_flags); in tcp_send()
945 } while (sent_length < 0 && errno == EINTR); in tcp_send()
946 return sent_length; in tcp_send()
957 ssize_t* sent_length,
1001 ssize_t* sent_length, in tcp_write_with_timestamps() argument
1031 *sent_length = length; in tcp_write_with_timestamps()
1330 ssize_t sent_length = 0; in do_tcp_flush_zerocopy() local
1349 !tcp_write_with_timestamps(tcp, &msg, sending_length, &sent_length, in do_tcp_flush_zerocopy()
1364 sent_length = tcp_send(tcp->fd, &msg, MSG_ZEROCOPY); in do_tcp_flush_zerocopy()
[all …]