Home
last modified time | relevance | path

Searched refs:inetAddr (Results 1 – 7 of 7) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/net/
DIpSecManagerFacade.java93 private SecurityParameterIndex allocateSpi(InetAddress inetAddr) { in allocateSpi() argument
95 return mIpSecManager.allocateSecurityParameterIndex(inetAddr); in allocateSpi()
102 private SecurityParameterIndex allocateSpi(InetAddress inetAddr, int requestedSpi) { in allocateSpi() argument
104 return mIpSecManager.allocateSecurityParameterIndex(inetAddr, requestedSpi); in allocateSpi()
309 InetAddress inetAddr = NetworkUtils.numericToInetAddress(addr); in ipSecCreateTransportModeTransform() local
319 spi, inetAddr, udpEncapSocket); in ipSecCreateTransportModeTransform()
379 InetAddress inetAddr = NetworkUtils.numericToInetAddress(addr); in ipSecAllocateSecurityParameterIndex() local
382 spi = allocateSpi(inetAddr); in ipSecAllocateSecurityParameterIndex()
384 spi = allocateSpi(inetAddr, requestedSpi.intValue()); in ipSecAllocateSecurityParameterIndex()
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/output/
DTcpServerOutput.java105 final InetAddress inetAddr = getInetAddress(options.getAddress()); in createServerSocket() local
106 return new ServerSocket(options.getPort(), 1, inetAddr); in createServerSocket()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DMessageChannel.java272 public static String getKey(InetAddress inetAddr, int port, String transport) { in getKey() argument
273 return (transport + ":" + inetAddr.getHostAddress() + ":" + port).toLowerCase(); in getKey()
DTCPMessageChannel.java154 protected TCPMessageChannel(InetAddress inetAddr, int port, SIPTransactionStack sipStack, in TCPMessageChannel() argument
160 this.peerAddress = inetAddr; in TCPMessageChannel()
DTLSMessageChannel.java169 protected TLSMessageChannel(InetAddress inetAddr, int port, SIPTransactionStack sipStack, in TLSMessageChannel() argument
175 this.peerAddress = inetAddr; in TLSMessageChannel()
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DDnsNameResolver.java248 for (InetAddress inetAddr : resolutionResults.addresses) {
249 servers.add(new EquivalentAddressGroup(new InetSocketAddress(inetAddr, port)));
/external/nist-sip/java/gov/nist/javax/sip/
DSipStackImpl.java1097 InetAddress inetAddr = InetAddress.getByName(address); in createListeningPoint() local
1099 .createMessageProcessor(inetAddr, port, transport); in createListeningPoint()