Home
last modified time | relevance | path

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

/frameworks/base/services/net/java/android/net/
DTcpKeepalivePacketData.java50 public final int tcpWndScale; field in TcpKeepalivePacketData
72 tcpWndScale = tcpDetails.rcvWndScale; in TcpKeepalivePacketData()
79 int tcpAck, int tcpWnd, int tcpWndScale, int ipTos, int ipTtl) in TcpKeepalivePacketData() argument
85 this.tcpWndScale = tcpWndScale; in TcpKeepalivePacketData()
164 && this.tcpWndScale == other.tcpWndScale in equals()
172 tcpAck, tcpSeq, tcpWnd, tcpWndScale, ipTos, ipTtl); in hashCode()
195 out.writeInt(tcpWndScale); in writeToParcel()
209 int tcpWndScale = in.readInt(); in readFromParcel() local
213 tcpAck, tcpWnd, tcpWndScale, ipTos, ipTtl); in readFromParcel()
248 parcel.rcvWndScale = tcpWndScale; in toStableParcelable()
[all …]
/frameworks/base/tests/net/java/android/net/
DTcpKeepalivePacketDataTest.java76 assertEquals(testInfo.rcvWndScale, resultData.tcpWndScale); in testV4TcpKeepalivePacket()