Home
last modified time | relevance | path

Searched refs:sourceAddress (Results 1 – 8 of 8) sorted by relevance

/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/utils/
DIkeSpiGenerator.java47 public IkeSecurityParameterIndex allocateSpi(InetAddress sourceAddress) throws IOException { in allocateSpi() argument
53 new Pair<InetAddress, Long>(sourceAddress, spi))); in allocateSpi()
54 return new IkeSecurityParameterIndex(sourceAddress, spi); in allocateSpi()
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()
73 + sourceAddress.getHostAddress()); in allocateSpi()
DIpSecSpiGenerator.java54 public SecurityParameterIndex allocateSpi(InetAddress sourceAddress) in allocateSpi() argument
57 return mIpSecManager.allocateSecurityParameterIndex(sourceAddress); in allocateSpi()
59 return mIpSecManager.allocateSecurityParameterIndex(sourceAddress, mRandom.nextInt()); in allocateSpi()
68 public SecurityParameterIndex allocateSpi(InetAddress sourceAddress, int requestedSpi) in allocateSpi() argument
70 return mIpSecManager.allocateSecurityParameterIndex(sourceAddress, requestedSpi); in allocateSpi()
DIkeSecurityParameterIndex.java49 IkeSecurityParameterIndex(InetAddress sourceAddress, long spi) { in IkeSecurityParameterIndex() argument
50 mSourceAddress = sourceAddress; in IkeSecurityParameterIndex()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DSaRecord.java484 InetAddress sourceAddress, in makeIpSecTransform() argument
503 if (udpEncapSocket != null && sourceAddress instanceof Inet6Address) { in makeIpSecTransform()
506 if (udpEncapSocket != null && sourceAddress instanceof Inet4Address) { in makeIpSecTransform()
512 return builder.buildTransportModeTransform(sourceAddress, spi); in makeIpSecTransform()
514 return builder.buildTunnelModeTransform(sourceAddress, spi); in makeIpSecTransform()
1169 InetAddress sourceAddress, in makeIpSecTransform() argument
/packages/services/Car/service/src/com/android/car/audio/
DCarAudioService.java599 public CarAudioPatchHandle createAudioPatch(String sourceAddress, in createAudioPatch() argument
603 return createAudioPatchLocked(sourceAddress, usage, gainInMillibels); in createAudioPatch()
615 private CarAudioPatchHandle createAudioPatchLocked(String sourceAddress, in createAudioPatchLocked() argument
621 if (sourceAddress.equals(info.getAddress())) { in createAudioPatchLocked()
628 "Specified source is not available: " + sourceAddress); in createAudioPatchLocked()
/packages/apps/Nfc/src/com/android/nfc/beam/
DBeamStatusReceiver.java113 String sourceAddress = intent.getStringExtra(EXTRA_ADDRESS); in handleTransferEvent() local
115 if (sourceAddress == null) return; in handleTransferEvent()
/packages/services/Car/car-lib/src/android/car/media/
DCarAudioManager.java327 public CarAudioPatchHandle createAudioPatch(String sourceAddress, in createAudioPatch() argument
330 return mService.createAudioPatch(sourceAddress, usage, gainInMillibels); in createAudioPatch()
DICarAudio.aidl38 CarAudioPatchHandle createAudioPatch(in String sourceAddress, int usage, int gainInMillibels); in createAudioPatch() argument