Home
last modified time | relevance | path

Searched refs:ipAddress (Results 1 – 19 of 19) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/stack/
DMessageProcessor.java78 private InetAddress ipAddress; field in MessageProcessor
113 protected MessageProcessor( InetAddress ipAddress, int port, String transport, in MessageProcessor() argument
116 this.initialize(ipAddress, port, transactionStack); in MessageProcessor()
127 public final void initialize( InetAddress ipAddress, int port, in initialize() argument
131 this.savedIpAddress = ipAddress.getHostAddress(); in initialize()
132 this.ipAddress = ipAddress; in initialize()
135 this.sentByHostPort.setHost(new Host(ipAddress.getHostAddress())); in initialize()
220 return this.ipAddress; in getIpAddress()
225 protected void setIpAddress(InetAddress ipAddress) { in setIpAddress() argument
226 this.sentByHostPort.setHost( new Host(ipAddress.getHostAddress())); in setIpAddress()
[all …]
DUDPMessageProcessor.java97 protected UDPMessageProcessor(InetAddress ipAddress, in UDPMessageProcessor() argument
99 super(ipAddress, port, "udp",sipStack); in UDPMessageProcessor()
108 ipAddress); in UDPMessageProcessor()
120 if ( ipAddress.getHostAddress().equals(IN_ADDR_ANY) || in UDPMessageProcessor()
121 ipAddress.getHostAddress().equals(IN6_ADDR_ANY)){ in UDPMessageProcessor()
DUDPMessageChannel.java144 String ipAddress; field in UDPMessageChannel.PingBackTimerTask
147 public PingBackTimerTask(String ipAddress, int port) { in PingBackTimerTask() argument
148 this.ipAddress = ipAddress; in PingBackTimerTask()
150 pingBackRecord.put(ipAddress + ":" + port, this); in PingBackTimerTask()
154 pingBackRecord.remove(ipAddress + ":" + port); in run()
158 return (ipAddress + ":" + port).hashCode(); in hashCode()
DTCPMessageProcessor.java78 protected TCPMessageProcessor(InetAddress ipAddress, SIPTransactionStack sipStack, int port) { in TCPMessageProcessor() argument
79 super(ipAddress, port, "tcp",sipStack); in TCPMessageProcessor()
DTLSMessageProcessor.java88 protected TLSMessageProcessor(InetAddress ipAddress, SIPTransactionStack sipStack, int port) { in TLSMessageProcessor() argument
89 super(ipAddress, port, "tls",sipStack); in TLSMessageProcessor()
DServerLog.java161 public void setStackIpAddress(String ipAddress) { in setStackIpAddress() argument
162 this.stackIpAddress = ipAddress; in setStackIpAddress()
DSIPTransactionStack.java1937 protected MessageProcessor createMessageProcessor(InetAddress ipAddress, int port, in createMessageProcessor() argument
1940 UDPMessageProcessor udpMessageProcessor = new UDPMessageProcessor(ipAddress, this, in createMessageProcessor()
1946 TCPMessageProcessor tcpMessageProcessor = new TCPMessageProcessor(ipAddress, this, in createMessageProcessor()
1952 TLSMessageProcessor tlsMessageProcessor = new TLSMessageProcessor(ipAddress, this, in createMessageProcessor()
1964 mp.initialize( ipAddress, port, this ); in createMessageProcessor()
/external/chromium_org/net/android/java/src/org/chromium/net/
DAndroidNetworkLibrary.java177 String ipAddress = address.getHostAddress(); in getNetworkList() local
178 if (address instanceof Inet6Address && ipAddress.contains("%")) { in getNetworkList()
179 ipAddress = ipAddress.substring(0, ipAddress.lastIndexOf("%")); in getNetworkList()
181 addressString.append(ipAddress); in getNetworkList()
/external/nist-sip/java/gov/nist/javax/sip/
DListeningPointImpl.java227 String ipAddress = this.getIPAddress(); in createContactHeader() local
230 sipURI.setHost(ipAddress); in createContactHeader()
246 public void sendHeartbeat(String ipAddress, int port) throws IOException { in sendHeartbeat() argument
249 targetHostPort.setHost(new Host( ipAddress)); in sendHeartbeat()
DListeningPointExt.java29 public void sendHeartbeat(String ipAddress, int port) throws IOException ; in sendHeartbeat() argument
DDialogFilter.java305 String ipAddress = contactUri.getHost(); in processRequest() local
319 if (ipAddress != null in processRequest()
320 … && (!ipAddress.equals(listeningPoint.getIPAddress()) || contactPort != listeningPoint in processRequest()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DInetAddressTest.java277 byte ipAddress[] = { 127, 0, 0, 1 }; in test_getByAddressLjava_lang_String$B()
280 InetAddress addr = InetAddress.getByAddress(addressStr, ipAddress); in test_getByAddressLjava_lang_String$B()
281 addr = InetAddress.getByAddress(ipAddress); in test_getByAddressLjava_lang_String$B()
284 + ipAddress.length); in test_getByAddressLjava_lang_String$B()
292 addr = InetAddress.getByAddress(ipAddress); in test_getByAddressLjava_lang_String$B()
295 + ipAddress.length); in test_getByAddressLjava_lang_String$B()
DInet6AddressTest.java776 byte[] ipAddress = new byte[] {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}; in test_getHostAddress_()
777 InetAddress ia = InetAddress.getByAddress(ipAddress); in test_getHostAddress_()
780 ipAddress = new byte[] {-2, -128, 0, 0, 0, 0, 0, 0, 2, 17, 37, -1, -2, -8, 124, -79}; in test_getHostAddress_()
781 ia = InetAddress.getByAddress(ipAddress); in test_getHostAddress_()
/external/tcpdump/
DsctpHeader.h114 u_int32_t ipAddress; member
120 u_int8_t ipAddress[16]; member
/external/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
DOkHostnameVerifier.java83 private boolean verifyIpAddress(String ipAddress, X509Certificate certificate) { in verifyIpAddress() argument
85 if (ipAddress.equalsIgnoreCase(altName)) { in verifyIpAddress()
/external/nist-sip/java/javax/sip/
DSipStack.java14 ListeningPoint createListeningPoint(String ipAddress, int port, in createListeningPoint() argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DDebugEventSocketProxy.cs104 System.Net.IPAddress ipAddress = hostInfo.AddressList[0]; in Handshake()
105 serverSocket = new TcpListener( ipAddress, port ); in Handshake()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DDebugEventSocketProxy.cs97 System.Net.IPAddress ipAddress = hostInfo.AddressList[0]; in Handshake()
98 serverSocket = new TcpListener(ipAddress, port); in Handshake()
/external/chromium_org/chrome/common/extensions/api/
Dmdns.idl20 DOMString ipAddress;