Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/utils/
DIkeSpiGenerator.java62 public IkeSecurityParameterIndex allocateSpi(InetAddress sourceAddress, long requestedSpi) in allocateSpi() argument
65 new Pair<InetAddress, Long>(sourceAddress, requestedSpi))) { in allocateSpi()
66 return new IkeSecurityParameterIndex(sourceAddress, requestedSpi); in allocateSpi()
71 + requestedSpi in allocateSpi()
DIpSecSpiGenerator.java68 public SecurityParameterIndex allocateSpi(InetAddress sourceAddress, int requestedSpi) in allocateSpi() argument
70 return mIpSecManager.allocateSecurityParameterIndex(sourceAddress, requestedSpi); in allocateSpi()
/packages/modules/Connectivity/framework-t/src/android/net/
DIpSecManager.java351 @NonNull InetAddress destinationAddress, int requestedSpi) in allocateSecurityParameterIndex() argument
353 if (requestedSpi == IpSecManager.INVALID_SECURITY_PARAMETER_INDEX) { in allocateSecurityParameterIndex()
357 return new SecurityParameterIndex(mService, destinationAddress, requestedSpi); in allocateSecurityParameterIndex()
DIIpSecService.aidl37 in String destinationAddress, int requestedSpi, in IBinder binder); in allocateSecurityParameterIndex() argument
/packages/modules/Connectivity/service-t/src/com/android/server/
DIpSecService.java1166 String destinationAddress, int requestedSpi, IBinder binder) throws RemoteException { in allocateSecurityParameterIndex() argument
1169 if (requestedSpi > 0 && requestedSpi < 256) { in allocateSecurityParameterIndex()
1185 spi = mNetd.ipSecAllocateSpi(callingUid, "", destinationAddress, requestedSpi); in allocateSecurityParameterIndex()