Searched refs:tcpDetails (Results 1 – 1 of 1) sorted by relevance
131 final TcpKeepalivePacketDataParcelable tcpDetails = switchToRepairMode(fd); in getTcpKeepalivePacket() local133 return fromStableParcelable(tcpDetails); in getTcpKeepalivePacket()150 TcpKeepalivePacketDataParcelable tcpDetails) throws InvalidPacketException { in fromStableParcelable() argument153 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 …]