Home
last modified time | relevance | path

Searched refs:tcpInfo (Results 1 – 9 of 9) sorted by relevance

/external/iperf3/src/
Dtcp_info.c101 if (getsockopt(sp->socket, IPPROTO_TCP, TCP_INFO, (void *)&irp->tcpInfo, &tcp_info_length) < 0) in save_tcpinfo()
106 irp->tcpInfo.tcpi_snd_cwnd, irp->tcpInfo.tcpi_snd_mss, in save_tcpinfo()
107 irp->tcpInfo.tcpi_rtt); in save_tcpinfo()
118 return irp->tcpInfo.tcpi_total_retrans; in get_total_retransmits()
120 return irp->tcpInfo.tcpi_snd_rexmitpack; in get_total_retransmits()
122 return irp->tcpInfo.tcpi_snd_rexmitpack; in get_total_retransmits()
136 return irp->tcpInfo.tcpi_snd_cwnd * irp->tcpInfo.tcpi_snd_mss; in get_snd_cwnd()
138 return irp->tcpInfo.tcpi_snd_cwnd; in get_snd_cwnd()
140 return irp->tcpInfo.tcpi_snd_cwnd * irp->tcpInfo.tcpi_snd_mss; in get_snd_cwnd()
154 return irp->tcpInfo.tcpi_rtt; in get_rtt()
[all …]
Diperf.h92 struct tcp_info tcpInfo; /* getsockopt(TCP_INFO) for Linux, {Free,Net}BSD */ member
95 char *tcpInfo; member
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DNettySocketSupport.java45 public final TcpInfo tcpInfo; field in NettySocketSupport.NativeSocketOptions
50 TcpInfo tcpInfo, in NativeSocketOptions() argument
53 this.tcpInfo = tcpInfo; in NativeSocketOptions()
DInternalNettySocketSupport.java36 public InternalNativeSocketOptions(TcpInfo tcpInfo, Map<String, String> otherInfo) { in InternalNativeSocketOptions() argument
37 super(tcpInfo, otherInfo); in InternalNativeSocketOptions()
DUtils.java243 b.setTcpInfo(nativeOptions.tcpInfo); // may be null in getSocketOptions()
/external/mdnsresponder/mDNSCore/
DuDNS.c463 …if (n->tcpInfo.sock) { mDNSPlatformTCPCloseConnection(n->tcpInfo.sock); n->tcpInfo.sock = mDNSNULL… in RecreateNATMappings()
596 mDNSPlatformMemZero(&traversal->tcpInfo, sizeof(traversal->tcpInfo)); in mDNS_StartNATOperation_internal()
966 tcpInfo_t *tcpInfo = (tcpInfo_t *)context; in tcpCallback() local
968 mDNS *m = tcpInfo->m; in tcpCallback()
969 DNSQuestion *const q = tcpInfo->question; in tcpCallback()
972 tcpInfo->rr ? &tcpInfo->rr ->tcp : mDNSNULL; in tcpCallback()
973 if (backpointer && *backpointer != tcpInfo) in tcpCallback()
975 mDNSPlatformTCPGetFD(tcpInfo->sock), *backpointer, tcpInfo, q, tcpInfo->rr); in tcpCallback()
981 mDNSu8 *end = ((mDNSu8*) &tcpInfo->request) + tcpInfo->requestLen; in tcpCallback()
986 if (tcpInfo->rr && tcpInfo->rr->resrec.name != &tcpInfo->rr->namestorage) in tcpCallback()
[all …]
DmDNSEmbeddedAPI.h1016 tcpLNTInfo tcpInfo; // Legacy NAT traversal (UPnP) TCP connection member
/external/grpc-grpc-java/core/src/main/java/io/grpc/
DInternalChannelz.java982 @Nullable public final TcpInfo tcpInfo; field in InternalChannelz.SocketOptions
988 @Nullable TcpInfo tcpInfo, in SocketOptions() argument
993 this.tcpInfo = tcpInfo; in SocketOptions()
1000 private TcpInfo tcpInfo; field in InternalChannelz.SocketOptions.Builder
1018 public Builder setTcpInfo(TcpInfo tcpInfo) { in setTcpInfo() argument
1019 this.tcpInfo = tcpInfo; in setTcpInfo()
1039 return new SocketOptions(timeoutMillis, lingerSeconds, tcpInfo, others); in build()
/external/grpc-grpc-java/services/src/main/java/io/grpc/services/
DChannelzProtoUtil.java280 SocketOptionTcpInfo tcpInfo = SocketOptionTcpInfo.newBuilder() in toSocketOptionTcpInfo() local
314 .setAdditional(Any.pack(tcpInfo)) in toSocketOptionTcpInfo()
333 if (options.tcpInfo != null) { in toSocketOptionsList()
334 ret.add(toSocketOptionTcpInfo(options.tcpInfo)); in toSocketOptionsList()