Searched refs:getDstAddress (Results 1 – 10 of 10) sorted by relevance
/aosp12/packages/modules/Connectivity/framework/src/android/net/ |
H A D | TcpKeepalivePacketData.java | 138 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 D | NattKeepalivePacketData.java | 99 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 D | KeepalivePacketData.java | 97 public InetAddress getDstAddress() { in getDstAddress() method in KeepalivePacketData
|
/aosp12/packages/modules/NetworkStack/common/networkstackclient/src/android/net/util/ |
H A D | KeepalivePacketDataUtil.java | 62 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 D | IkeTunUtils.java | 60 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 D | KeepalivePacketDataUtilTest.java | 90 assertEquals(InetAddress.getByAddress(testInfo.dstAddress), resultData.getDstAddress()); in testFromTcpKeepaliveStableParcelable()
|
/aosp12/packages/modules/Connectivity/service/src/com/android/server/connectivity/ |
H A D | KeepaliveTracker.java | 228 + IpUtils.addressAndPortToString(mPacket.getDstAddress(), mPacket.getDstPort()) in toString()
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/ |
H A D | ClientModeImpl.java | 1262 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 D | system-current.txt | 140 method @NonNull public java.net.InetAddress getDstAddress();
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | RIL.java | 5587 if (packetData.getDstAddress() instanceof Inet4Address) { in startNattKeepalive() 5589 } else if (packetData.getDstAddress() instanceof Inet6Address) { in startNattKeepalive() 5599 final InetAddress dstAddress = packetData.getDstAddress(); in startNattKeepalive()
|