Searched refs:sourceAddress (Results 1 – 8 of 8) sorted by relevance
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/utils/ |
D | IkeSpiGenerator.java | 47 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()
|
D | IpSecSpiGenerator.java | 54 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()
|
D | IkeSecurityParameterIndex.java | 49 IkeSecurityParameterIndex(InetAddress sourceAddress, long spi) { in IkeSecurityParameterIndex() argument 50 mSourceAddress = sourceAddress; in IkeSecurityParameterIndex()
|
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/ |
D | SaRecord.java | 484 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/ |
D | CarAudioService.java | 599 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/ |
D | BeamStatusReceiver.java | 113 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/ |
D | CarAudioManager.java | 327 public CarAudioPatchHandle createAudioPatch(String sourceAddress, in createAudioPatch() argument 330 return mService.createAudioPatch(sourceAddress, usage, gainInMillibels); in createAudioPatch()
|
D | ICarAudio.aidl | 38 CarAudioPatchHandle createAudioPatch(in String sourceAddress, int usage, int gainInMillibels); in createAudioPatch() argument
|