/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/ |
H A D | IkeUdpEncapSocket.java | 23 import android.net.IpSecManager.UdpEncapsulationSocket; 55 private final UdpEncapsulationSocket mUdpEncapSocket; 60 UdpEncapsulationSocket udpEncapSocket, IkeSocketConfig sockConfig, Handler handler) { in IkeUdpEncapSocket() 86 UdpEncapsulationSocket udpEncapSocket = ipsecManager.openUdpEncapsulationSocket(); in getIkeUdpEncapSocket() 106 public UdpEncapsulationSocket getUdpEncapsulationSocket() { in getUdpEncapsulationSocket()
|
H A D | SaRecord.java | 28 import android.net.IpSecManager.UdpEncapsulationSocket; 500 UdpEncapsulationSocket udpEncapSocket, in makeIpSecTransform() 605 @Nullable public final UdpEncapsulationSocket udpEncapSocket; 621 @Nullable UdpEncapsulationSocket udpEncapSocket, in ChildSaRecordConfig() 1043 @Nullable UdpEncapsulationSocket udpEncapSocket, in makeChildSaRecord() 1210 UdpEncapsulationSocket udpEncapSocket, in makeIpSecTransform()
|
H A D | ChildSessionStateMachine.java | 55 import android.net.IpSecManager.UdpEncapsulationSocket; 192 @VisibleForTesting @Nullable UdpEncapsulationSocket mUdpEncapSocket; 377 UdpEncapsulationSocket udpEncapSocket, in handleFirstChildExchange() 412 UdpEncapsulationSocket udpEncapSocket, in createChildSession() 468 UdpEncapsulationSocket udpEncapSocket) { in rekeyChildSessionForMobike()
|
H A D | IkeSessionStateMachine.java | 73 import android.net.IpSecManager.UdpEncapsulationSocket; 2600 private UdpEncapsulationSocket getEncapSocketOrNull() { in getEncapSocketOrNull()
|
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/keepalive/ |
H A D | IkeNattKeepalive.java | 24 import android.net.IpSecManager.UdpEncapsulationSocket; 48 UdpEncapsulationSocket socket, in IkeNattKeepalive() 102 private final UdpEncapsulationSocket mSocket; 109 UdpEncapsulationSocket socket, in HardwareKeepaliveCb()
|
H A D | SoftwareKeepaliveImpl.java | 24 import android.net.IpSecManager.UdpEncapsulationSocket; 44 private final UdpEncapsulationSocket mSocket; 58 UdpEncapsulationSocket socket, in SoftwareKeepaliveImpl()
|
H A D | HardwareKeepaliveImpl.java | 33 import android.net.IpSecManager.UdpEncapsulationSocket; 56 UdpEncapsulationSocket socket, in HardwareKeepaliveImpl()
|
/aosp12/frameworks/base/core/java/android/net/ |
H A D | IpSecManager.java | 557 public static final class UdpEncapsulationSocket implements AutoCloseable { class in IpSecManager 564 private UdpEncapsulationSocket(@NonNull IIpSecService service, int port) in UdpEncapsulationSocket() method in IpSecManager.UdpEncapsulationSocket 676 public UdpEncapsulationSocket openUdpEncapsulationSocket(int port) in openUdpEncapsulationSocket() 686 return new UdpEncapsulationSocket(mService, port); in openUdpEncapsulationSocket() 710 public UdpEncapsulationSocket openUdpEncapsulationSocket() in openUdpEncapsulationSocket() 713 return new UdpEncapsulationSocket(mService, 0); in openUdpEncapsulationSocket()
|
H A D | IpSecTransform.java | 313 @NonNull IpSecManager.UdpEncapsulationSocket localSocket, int remotePort) { in setIpv4Encapsulation()
|
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/ |
H A D | IkeUdpEncapSocketTest.java | 34 import android.net.IpSecManager.UdpEncapsulationSocket; 60 private UdpEncapsulationSocket mSpyUdpEncapSocket; 62 private UdpEncapsulationSocket mSpyDummyUdpEncapSocketOne; 63 private UdpEncapsulationSocket mSpyDummyUdpEncapSocketTwo;
|
H A D | IkeSessionTestBase.java | 38 import android.net.IpSecManager.UdpEncapsulationSocket; 136 any(UdpEncapsulationSocket.class), in resetMockConnectManager()
|
H A D | SaRecordTest.java | 37 import android.net.IpSecManager.UdpEncapsulationSocket; 264 UdpEncapsulationSocket mockUdpEncapSocket = mock(UdpEncapsulationSocket.class); in testMakeChildSaRecord()
|
H A D | ChildSessionStateMachineTest.java | 72 import android.net.IpSecManager.UdpEncapsulationSocket; 190 private UdpEncapsulationSocket mMockUdpEncapSocket; 251 mMockUdpEncapSocket = mock(UdpEncapsulationSocket.class); in setup()
|
/aosp12/packages/modules/Connectivity/tests/unit/java/android/net/ |
H A D | IpSecManagerTest.java | 193 IpSecManager.UdpEncapsulationSocket encapSocket = in testOpenEncapsulationSocket() 242 IpSecManager.UdpEncapsulationSocket encapSocket = in testOpenEncapsulationSocketOnRandomPort()
|
/aosp12/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/ |
H A D | IpSecManagerTunnelTest.java | 20 import static android.net.IpSecManager.UdpEncapsulationSocket; 584 UdpEncapsulationSocket encapSocket = mISM.openUdpEncapsulationSocket()) { 704 UdpEncapsulationSocket encapSocket = mISM.openUdpEncapsulationSocket()) { 786 UdpEncapsulationSocket encapSocket = mISM.openUdpEncapsulationSocket()) { 816 UdpEncapsulationSocket encapSocket,
|
H A D | IpSecManagerTest.java | 500 try (IpSecManager.UdpEncapsulationSocket encapSocket = mISM.openUdpEncapsulationSocket(); in checkTransform() 653 try (IpSecManager.UdpEncapsulationSocket encapSocket = mISM.openUdpEncapsulationSocket()) { in testIkeOverUdpEncapSocket() 1496 IpSecManager.UdpEncapsulationSocket encapSocket = null; in testOpenUdpEncapSocketSpecificPort() 1525 try (IpSecManager.UdpEncapsulationSocket encapSocket = mISM.openUdpEncapsulationSocket()) { in testOpenUdpEncapSocketRandomPort()
|
H A D | IpSecBaseTest.java | 641 IpSecManager.UdpEncapsulationSocket encapSocket, in buildIpSecTransform()
|
H A D | ConnectivityManagerTest.java | 110 import android.net.IpSecManager.UdpEncapsulationSocket; 1583 final UdpEncapsulationSocket nattSocket = mIpSec.openUdpEncapsulationSocket(); in createConcurrentNattSocketKeepalives()
|
/aosp12/frameworks/layoutlib/bridge/src/android/net/ |
H A D | ConnectivityManager.java | 23 import android.net.IpSecManager.UdpEncapsulationSocket; 387 @NonNull UdpEncapsulationSocket socket, in createSocketKeepalive()
|
/aosp12/frameworks/base/core/api/ |
H A D | module-lib-current.txt | 176 public static final class IpSecManager.UdpEncapsulationSocket implements java.lang.AutoCloseable {
|
/aosp12/packages/modules/Connectivity/framework/src/android/net/ |
H A D | ConnectivityManager.java | 44 import android.net.IpSecManager.UdpEncapsulationSocket; 2099 @NonNull UdpEncapsulationSocket socket, in createSocketKeepalive()
|
/aosp12/packages/modules/Connectivity/framework/api/ |
H A D | current.txt | 69 …(@NonNull android.net.Network, @NonNull android.net.IpSecManager.UdpEncapsulationSocket, @NonNull …
|
/aosp12/packages/modules/Connectivity/tests/unit/java/com/android/server/ |
H A D | ConnectivityServiceTest.java | 226 import android.net.IpSecManager.UdpEncapsulationSocket; 5526 final UdpEncapsulationSocket testSocket = mIpSec.openUdpEncapsulationSocket(); in doTestNattSocketKeepalivesWithExecutor() 5683 final UdpEncapsulationSocket testSocket2 = mIpSec.openUdpEncapsulationSocket(); in doTestNattSocketKeepalivesWithExecutor() 5807 final UdpEncapsulationSocket testSocket = mIpSec.openUdpEncapsulationSocket(); in doTestNattSocketKeepalivesFdWithExecutor()
|
/aosp12/frameworks/base/boot/ |
H A D | preloaded-classes | 5020 android.net.IpSecManager$UdpEncapsulationSocket
|
/aosp12/frameworks/base/config/ |
H A D | preloaded-classes | 5018 android.net.IpSecManager$UdpEncapsulationSocket
|