Home
last modified time | relevance | path

Searched refs:tcpinfo (Results 1 – 3 of 3) sorted by relevance

/system/netd/server/
DTcpSocketMonitor.cpp79 const struct tcp_info *tcpinfo, uint32_t tcpinfoLen) { in tcpInfoPrint() argument
96 TCPINFO_GET(tcpinfo, tcpi_rtt, tcpinfoLen, 0) / 1000.0, in tcpInfoPrint()
97 TCPINFO_GET(tcpinfo, tcpi_segs_out, tcpinfoLen, 0), in tcpInfoPrint()
98 TCPINFO_GET(tcpinfo, tcpi_lost, tcpinfoLen, 0)); in tcpInfoPrint()
145 const struct tcp_info *tcpinfo, uint32_t tcpinfoLen) { in dump() argument
146 tcpInfoPrint(dw, mark, sockinfo, tcpinfo, tcpinfoLen); in dump()
207 const struct tcp_info *tcpinfo, in poll()
209 if (sockinfo == nullptr || tcpinfo == nullptr || tcpinfoLen == 0 || mark.intValue == 0) { in poll()
212 updateSocketStats(now, mark, sockinfo, tcpinfo, tcpinfoLen); in poll()
280 const struct tcp_info *tcpinfo, in updateSocketStats() argument
[all …]
DTcpSocketMonitor.h90 const struct tcp_info *tcpinfo, uint32_t tcpinfoLen) REQUIRES(mLock);
DSockDiag.cpp225 struct tcp_info *tcpinfo = nullptr; in readDiagMsgWithTcpInfo() local
232 tcpinfo = reinterpret_cast<struct tcp_info*>(RTA_DATA(attr)); in readDiagMsgWithTcpInfo()
241 tcpInfoReader(mark, msg, tcpinfo, tcpinfoLength); in readDiagMsgWithTcpInfo()