Searched refs:requestedSpi (Results 1 – 5 of 5) sorted by relevance
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/utils/ |
D | IkeSpiGenerator.java | 62 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()
|
D | IpSecSpiGenerator.java | 68 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/ |
D | IpSecManager.java | 351 @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()
|
D | IIpSecService.aidl | 37 in String destinationAddress, int requestedSpi, in IBinder binder); in allocateSecurityParameterIndex() argument
|
/packages/modules/Connectivity/service-t/src/com/android/server/ |
D | IpSecService.java | 1166 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()
|