Home
last modified time | relevance | path

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

/packages/modules/NetworkStack/src/com/android/networkstack/netlink/
DTcpInfo.java127 final int mTotalRetrans; field in TcpInfo
147 mTotalRetrans = bytes.get(start + TOTAL_RETRANS_OFFSET); in TcpInfo()
158 mTotalRetrans = totalRetrans; in TcpInfo()
206 && mTotalRetrans == other.mTotalRetrans; in equals()
211 return Objects.hash(mSegsIn, mSegsOut, mTotalRetrans); in hashCode()
217 + ", totalRetrans=" + mTotalRetrans + "}"; in toString()
DTcpSocketTracker.java495 stat.retransCount = current.tcpInfo.mTotalRetrans; in calculateLatestPacketsStat()
500 stat.retransCount -= previous.tcpInfo.mTotalRetrans; in calculateLatestPacketsStat()