Home
last modified time | relevance | path

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

/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
H A DIkeUdpEncapSocket.java60 UdpEncapsulationSocket udpEncapSocket, IkeSocketConfig sockConfig, Handler handler) { in IkeUdpEncapSocket() argument
62 mUdpEncapSocket = udpEncapSocket; in IkeUdpEncapSocket()
86 UdpEncapsulationSocket udpEncapSocket = ipsecManager.openUdpEncapsulationSocket(); in getIkeUdpEncapSocket() local
87 FileDescriptor fd = udpEncapSocket.getFileDescriptor(); in getIkeUdpEncapSocket()
90 ikeSocket = new IkeUdpEncapSocket(udpEncapSocket, sockConfig, new Handler(looper)); in getIkeUdpEncapSocket()
H A DSaRecord.java437 childSaRecordConfig.udpEncapSocket, in makeChildSaRecord()
448 childSaRecordConfig.udpEncapSocket, in makeChildSaRecord()
500 UdpEncapsulationSocket udpEncapSocket, in makeIpSecTransform() argument
518 if (udpEncapSocket != null && sourceAddress instanceof Inet6Address) { in makeIpSecTransform()
523 udpEncapSocket, IkeSocket.SERVER_PORT_UDP_ENCAPSULATED); in makeIpSecTransform()
605 @Nullable public final UdpEncapsulationSocket udpEncapSocket; field in SaRecord.ChildSaRecordConfig
621 @Nullable UdpEncapsulationSocket udpEncapSocket, in ChildSaRecordConfig() argument
634 this.udpEncapSocket = udpEncapSocket; in ChildSaRecordConfig()
1043 @Nullable UdpEncapsulationSocket udpEncapSocket, in makeChildSaRecord() argument
1062 udpEncapSocket, in makeChildSaRecord()
[all …]
H A DChildSessionStateMachine.java377 UdpEncapsulationSocket udpEncapSocket, in handleFirstChildExchange() argument
384 this.mUdpEncapSocket = udpEncapSocket; in handleFirstChildExchange()
412 UdpEncapsulationSocket udpEncapSocket, in createChildSession() argument
418 this.mUdpEncapSocket = udpEncapSocket; in createChildSession()
468 UdpEncapsulationSocket udpEncapSocket) { in rekeyChildSessionForMobike() argument
471 this.mUdpEncapSocket = udpEncapSocket; in rekeyChildSessionForMobike()
/aosp12/packages/modules/Connectivity/tests/unit/java/com/android/server/
H A DIpSecServiceRefcountedResourceTest.java268 RefcountedResource<IResource> udpEncapSocket = getTestRefcountedResource(); in testSampleUdpEncapTranform() local
270 getTestRefcountedResource(spi1, spi2, udpEncapSocket); in testSampleUdpEncapTranform()
276 udpEncapSocket.userRelease(); in testSampleUdpEncapTranform()
285 assertResourceState(udpEncapSocket, -1, 1, 2, 1, 1); in testSampleUdpEncapTranform()
295 RefcountedResource<IResource> udpEncapSocket = getTestRefcountedResource(); in testSampleDualTransformEncapSocket() local
297 getTestRefcountedResource(spi1, spi2, udpEncapSocket); in testSampleDualTransformEncapSocket()
299 getTestRefcountedResource(spi3, spi4, udpEncapSocket); in testSampleDualTransformEncapSocket()
305 udpEncapSocket.userRelease(); in testSampleDualTransformEncapSocket()
319 assertResourceState(udpEncapSocket, -1, 1, 3, 1, 1); in testSampleDualTransformEncapSocket()
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/
H A DChildSessionStateMachineTest.java428 assertEquals(mMockUdpEncapSocket, childSaRecordConfig.udpEncapSocket); in verifyChildSaRecordConfig()