Searched refs:sourceAddress (Results 1 – 10 of 10) 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 | 52 IkeSecurityParameterIndex(InetAddress sourceAddress, long spi) { in IkeSecurityParameterIndex() argument 53 mSourceAddress = sourceAddress; in IkeSecurityParameterIndex()
|
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/ |
D | SaRecord.java | 499 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/ |
D | BeamStatusReceiver.java | 113 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/ |
D | CarAudioService.java | 763 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/ |
D | ICarAudio.aidl | 39 CarAudioPatchHandle createAudioPatch(in String sourceAddress, int usage, int gainInMillibels); in createAudioPatch() argument
|
D | CarAudioManager.java | 399 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/ |
D | FakeCarAudioService.java | 71 public CarAudioPatchHandle createAudioPatch(String sourceAddress, int usage, in createAudioPatch() argument
|
/packages/services/Car/car-lib/api/ |
D | system-lint-baseline.txt | 412 Missing nullability on parameter `sourceAddress` in method `createAudioPatch`
|