Home
last modified time | relevance | path

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

/packages/modules/Connectivity/service/src/com/android/server/connectivity/
DTcpKeepaliveController.java131 final TcpKeepalivePacketDataParcelable tcpDetails = switchToRepairMode(fd); in getTcpKeepalivePacket() local
133 return fromStableParcelable(tcpDetails); in getTcpKeepalivePacket()
150 TcpKeepalivePacketDataParcelable tcpDetails) throws InvalidPacketException { in fromStableParcelable() argument
153 if ((tcpDetails.srcAddress != null) && (tcpDetails.dstAddress != null) in fromStableParcelable()
154 && (tcpDetails.srcAddress.length == 4 /* V4 IP length */) in fromStableParcelable()
155 && (tcpDetails.dstAddress.length == 4 /* V4 IP length */)) { in fromStableParcelable()
156 packet = buildV4Packet(tcpDetails); in fromStableParcelable()
162 InetAddress.getByAddress(tcpDetails.srcAddress), in fromStableParcelable()
163 tcpDetails.srcPort, in fromStableParcelable()
164 InetAddress.getByAddress(tcpDetails.dstAddress), in fromStableParcelable()
[all …]