Home
last modified time | relevance | path

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

/aosp12/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
H A DIpSecManagerTest.java273 InetAddress localAddr = InetAddress.getByName(IPV4_LOOPBACK); in testCreateTransform()
652 InetAddress local = InetAddress.getByName(IPV4_LOOPBACK); in testIkeOverUdpEncapSocket()
1209 checkTransform(IPPROTO_TCP, IPV4_LOOPBACK, crypt, auth, null, true, 1, true); in testAesCbcHmacMd5Tcp4UdpEncap()
1217 checkTransform(IPPROTO_UDP, IPV4_LOOPBACK, crypt, auth, null, true, 1, true); in testAesCbcHmacMd5Udp4UdpEncap()
1225 checkTransform(IPPROTO_TCP, IPV4_LOOPBACK, crypt, auth, null, true, 1, true); in testAesCbcHmacSha1Tcp4UdpEncap()
1233 checkTransform(IPPROTO_UDP, IPV4_LOOPBACK, crypt, auth, null, true, 1, true); in testAesCbcHmacSha1Udp4UdpEncap()
1241 checkTransform(IPPROTO_TCP, IPV4_LOOPBACK, crypt, auth, null, true, 1, true); in testAesCbcHmacSha256Tcp4UdpEncap()
1249 checkTransform(IPPROTO_UDP, IPV4_LOOPBACK, crypt, auth, null, true, 1, true); in testAesCbcHmacSha256Udp4UdpEncap()
1257 checkTransform(IPPROTO_TCP, IPV4_LOOPBACK, crypt, auth, null, true, 1, true); in testAesCbcHmacSha384Tcp4UdpEncap()
1477 checkTransform(IPPROTO_UDP, IPV4_LOOPBACK, null, auth, null, true, 1, true); in testAuthUdp4UdpEncap()
[all …]
H A DIpSecBaseTest.java77 protected static final String IPV4_LOOPBACK = "127.0.0.1"; field in IpSecBaseTest
79 protected static final String[] LOOPBACK_ADDRS = new String[] {IPV4_LOOPBACK, IPV6_LOOPBACK};
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/
H A DIkeUdpEncapSocketTest.java157 ikeSocket.sendIkePacket(mDataOne, IPV4_LOOPBACK); in disableTestSendIkePacket()
245 sendToIkeUdpEncapSocket(mDummyRemoteServerFd, mDataOne, IPV4_LOOPBACK); in testReceiveIkePacket()
251 sendToIkeUdpEncapSocket(mDummyRemoteServerFd, mDataTwo, IPV4_LOOPBACK); in testReceiveIkePacket()
266 mDummyRemoteServerFd, new byte[largePacketSize], IPV4_LOOPBACK); in testReceiveTooLargePacket()
269 sendToIkeUdpEncapSocket(mDummyRemoteServerFd, mDataOne, IPV4_LOOPBACK); in testReceiveTooLargePacket()
H A DIkeSocketTestBase.java83 protected static final InetAddress IPV4_LOOPBACK = field in IkeSocketTestBase
104 mDummyRemoteServerFd = getBoundUdpSocket(IPV4_LOOPBACK); in setUp()
/aosp12/system/netd/libnetdutils/
H A DInternetAddressesTest.cpp83 const in_addr IPV4_LOOPBACK{htonl(INADDR_LOOPBACK)}; variable
161 EXPECT_EQ(IPAddress(IPV4_LOOPBACK), IPAddress::forString("127.0.0.1")); in TEST()