Home
last modified time | relevance | path

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

/aosp12/packages/modules/Connectivity/framework/src/android/net/
H A DTcpKeepalivePacketData.java138 final InetAddress dstAddress = getDstAddress(); in equals()
140 && dstAddress.equals(other.getDstAddress()) in equals()
153 return Objects.hash(getSrcAddress(), getDstAddress(), getSrcPort(), getDstPort(), in hashCode()
172 out.writeString(getDstAddress().getHostAddress()); in writeToParcel()
220 + " daddr: " + getDstAddress() in toString()
H A DNattKeepalivePacketData.java99 out.writeString(getDstAddress().getHostAddress()); in writeToParcel()
133 final InetAddress dstAddress = getDstAddress(); in equals()
135 && dstAddress.equals(other.getDstAddress()) in equals()
142 return Objects.hash(getSrcAddress(), getDstAddress(), getSrcPort(), getDstPort()); in hashCode()
H A DKeepalivePacketData.java97 public InetAddress getDstAddress() { in getDstAddress() method in KeepalivePacketData
/aosp12/packages/modules/NetworkStack/common/networkstackclient/src/android/net/util/
H A DKeepalivePacketDataUtil.java62 final InetAddress dstAddress = pkt.getDstAddress(); in toStableParcelable()
78 final InetAddress dstAddress = pkt.getDstAddress(); in toStableParcelable()
211 p.dstAddress = data.getDstAddress().getAddress(); in parseTcpKeepalivePacketData()
/aosp12/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
H A DIkeTunUtils.java60 final InetAddress srcAddr = getDstAddress(request); in awaitReqAndInjectResp()
128 private static InetAddress getDstAddress(byte[] pkt) throws Exception { in getDstAddress() method in IkeTunUtils
/aosp12/packages/modules/Connectivity/tests/unit/java/android/net/
H A DKeepalivePacketDataUtilTest.java90 assertEquals(InetAddress.getByAddress(testInfo.dstAddress), resultData.getDstAddress()); in testFromTcpKeepaliveStableParcelable()
/aosp12/packages/modules/Connectivity/service/src/com/android/server/connectivity/
H A DKeepaliveTracker.java228 + IpUtils.addressAndPortToString(mPacket.getDstAddress(), mPacket.getDstPort()) in toString()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DClientModeImpl.java1262 mLinkProperties.getRoutes(), packetData.getDstAddress()).getGateway(); in getDstMacForKeepalive()
1272 if (packetData.getDstAddress() instanceof Inet4Address) { in getEtherProtoForKeepalive()
1274 } else if (packetData.getDstAddress() instanceof Inet6Address) { in getEtherProtoForKeepalive()
/aosp12/packages/modules/Connectivity/framework/api/
H A Dsystem-current.txt140 method @NonNull public java.net.InetAddress getDstAddress();
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java5587 if (packetData.getDstAddress() instanceof Inet4Address) { in startNattKeepalive()
5589 } else if (packetData.getDstAddress() instanceof Inet6Address) { in startNattKeepalive()
5599 final InetAddress dstAddress = packetData.getDstAddress(); in startNattKeepalive()