Home
last modified time | relevance | path

Searched refs:remoteAddress (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/net/
DIpSecManager.java144 @NonNull IIpSecService service, int direction, InetAddress remoteAddress, int spi) in SecurityParameterIndex() argument
147 mRemoteAddress = remoteAddress; in SecurityParameterIndex()
151 direction, remoteAddress.getHostAddress(), spi, new Binder()); in SecurityParameterIndex()
203 int direction, InetAddress remoteAddress) in reserveSecurityParameterIndex() argument
209 remoteAddress, in reserveSecurityParameterIndex()
230 int direction, InetAddress remoteAddress, int requestedSpi) in reserveSecurityParameterIndex() argument
235 return new SecurityParameterIndex(mService, direction, remoteAddress, requestedSpi); in reserveSecurityParameterIndex()
DIpSecConfig.java34 InetAddress remoteAddress; field in IpSecConfig
77 return remoteAddress; in getRemoteAddress()
120 out.writeString((remoteAddress != null) ? remoteAddress.getHostAddress() : null); in writeToParcel()
152 remoteAddress = readInetAddressFromParcel(in); in IpSecConfig()
DIpSecTransform.java446 public IpSecTransform buildTransportModeTransform(InetAddress remoteAddress) in buildTransportModeTransform() argument
452 mConfig.remoteAddress = remoteAddress; in buildTransportModeTransform()
470 InetAddress localAddress, InetAddress remoteAddress) { in buildTunnelModeTransform() argument
474 mConfig.remoteAddress = remoteAddress; in buildTunnelModeTransform()
DIIpSecService.aidl31 int direction, in String remoteAddress, int requestedSpi, in IBinder binder); in reserveSecurityParameterIndex() argument
/frameworks/base/core/java/org/apache/http/conn/ssl/
DSSLSocketFactory.java321 InetSocketAddress remoteAddress; in connectSocket() local
323 remoteAddress = new InetSocketAddress(this.nameResolver.resolve(host), port); in connectSocket()
325 remoteAddress = new InetSocketAddress(host, port); in connectSocket()
328 sslsock.connect(remoteAddress, connTimeout); in connectSocket()
/frameworks/base/services/core/java/com/android/server/
DIpSecService.java179 String remoteAddress, in SpiRecord() argument
186 mRemoteAddress = remoteAddress; in SpiRecord()
278 int direction, String remoteAddress, int requestedSpi, IBinder binder) in reserveSecurityParameterIndex() argument
292 remoteAddress, in reserveSecurityParameterIndex()
302 resourceId, direction, localAddress, remoteAddress, spi, binder)); in reserveSecurityParameterIndex()
/frameworks/opt/net/voip/src/java/android/net/rtp/
DAudioGroup.java164 private native long nativeAdd(int mode, int socket, String remoteAddress, in nativeAdd() argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiServiceImpl.java1980 public void enableTdls(String remoteAddress, boolean enable) { in enableTdls() argument
1981 if (remoteAddress == null) { in enableTdls()
1986 params.remoteIpAddress = remoteAddress; in enableTdls()
DWifiStateMachine.java4333 String remoteAddress = (String) message.obj; in processMessage() local
4335 mWifiNative.startTdls(remoteAddress, enable); in processMessage()