Home
last modified time | relevance | path

Searched refs:sourceAddress (Results 1 – 10 of 10) 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.java52 IkeSecurityParameterIndex(InetAddress sourceAddress, long spi) { in IkeSecurityParameterIndex() argument
53 mSourceAddress = sourceAddress; in IkeSecurityParameterIndex()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DSaRecord.java499 InetAddress sourceAddress, in makeIpSecTransform() argument
518 if (udpEncapSocket != null && sourceAddress instanceof Inet6Address) { in makeIpSecTransform()
521 if (udpEncapSocket != null && sourceAddress instanceof Inet4Address) { in makeIpSecTransform()
527 return builder.buildTransportModeTransform(sourceAddress, spi); in makeIpSecTransform()
529 return builder.buildTunnelModeTransform(sourceAddress, spi); in makeIpSecTransform()
1209 InetAddress sourceAddress, in makeIpSecTransform() argument
/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/service/src/com/android/car/audio/
DCarAudioService.java763 public CarAudioPatchHandle createAudioPatch(String sourceAddress, in createAudioPatch() argument
767 return createAudioPatchLocked(sourceAddress, usage, gainInMillibels); in createAudioPatch()
779 private CarAudioPatchHandle createAudioPatchLocked(String sourceAddress, in createAudioPatchLocked() argument
785 if (sourceAddress.equals(info.getAddress())) { in createAudioPatchLocked()
792 "Specified source is not available: " + sourceAddress); in createAudioPatchLocked()
/packages/services/Car/car-lib/src/android/car/media/
DICarAudio.aidl39 CarAudioPatchHandle createAudioPatch(in String sourceAddress, int usage, int gainInMillibels); in createAudioPatch() argument
DCarAudioManager.java399 public CarAudioPatchHandle createAudioPatch(String sourceAddress, in createAudioPatch() argument
402 return mService.createAudioPatch(sourceAddress, usage, gainInMillibels); in createAudioPatch()
/packages/services/Car/car-test-lib/src/android/car/testapi/
DFakeCarAudioService.java71 public CarAudioPatchHandle createAudioPatch(String sourceAddress, int usage, in createAudioPatch() argument
/packages/services/Car/car-lib/api/
Dsystem-lint-baseline.txt412 Missing nullability on parameter `sourceAddress` in method `createAudioPatch`