Home
last modified time | relevance | path

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

/packages/modules/Connectivity/framework/src/android/net/
DTcpKeepalivePacketData.java68 public final int ipTtl; field in TcpKeepalivePacketData
72 int tcpSeq, int tcpAck, int tcpWindow, int tcpWindowScale, int ipTos, int ipTtl) in TcpKeepalivePacketData() argument
80 this.ipTtl = ipTtl; in TcpKeepalivePacketData()
130 return ipTtl; in getIpTtl()
148 && this.ipTtl == other.ipTtl; in equals()
154 tcpAck, tcpSeq, tcpWindow, tcpWindowScale, ipTos, ipTtl); in hashCode()
181 out.writeInt(ipTtl); in writeToParcel()
195 int ipTtl = in.readInt(); in readFromParcel() local
197 tcpAck, tcpWnd, tcpWndScale, ipTos, ipTtl); in readFromParcel()
228 + " ttl: " + ipTtl; in toString()
/packages/modules/Connectivity/tests/common/java/android/net/
DTcpKeepalivePacketDataTest.kt45 ipTtl: Int = 10 in <lambda>()
47 tcpWnd, tcpWndScale, ipTos, ipTtl) in <lambda>()
69 assertNotEquals(makeData(ipTtl = 11), makeData()) in <lambda>()
/packages/modules/Connectivity/tests/unit/java/android/net/
DKeepalivePacketDataUtilTest.java99 assertEquals(testInfo.ttl, resultData.ipTtl); in testFromTcpKeepaliveStableParcelable()