/external/nist-sip/java/gov/nist/javax/sip/stack/ |
D | MessageProcessor.java | 78 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 …]
|
D | UDPMessageProcessor.java | 97 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()
|
D | UDPMessageChannel.java | 144 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()
|
D | TCPMessageProcessor.java | 78 protected TCPMessageProcessor(InetAddress ipAddress, SIPTransactionStack sipStack, int port) { in TCPMessageProcessor() argument 79 super(ipAddress, port, "tcp",sipStack); in TCPMessageProcessor()
|
D | TLSMessageProcessor.java | 88 protected TLSMessageProcessor(InetAddress ipAddress, SIPTransactionStack sipStack, int port) { in TLSMessageProcessor() argument 89 super(ipAddress, port, "tls",sipStack); in TLSMessageProcessor()
|
D | ServerLog.java | 161 public void setStackIpAddress(String ipAddress) { in setStackIpAddress() argument 162 this.stackIpAddress = ipAddress; in setStackIpAddress()
|
D | SIPTransactionStack.java | 1937 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/ |
D | AndroidNetworkLibrary.java | 177 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/ |
D | ListeningPointImpl.java | 227 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()
|
D | ListeningPointExt.java | 29 public void sendHeartbeat(String ipAddress, int port) throws IOException ; in sendHeartbeat() argument
|
D | DialogFilter.java | 305 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/ |
D | InetAddressTest.java | 277 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()
|
D | Inet6AddressTest.java | 776 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/ |
D | sctpHeader.h | 114 u_int32_t ipAddress; member 120 u_int8_t ipAddress[16]; member
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/tls/ |
D | OkHostnameVerifier.java | 83 private boolean verifyIpAddress(String ipAddress, X509Certificate certificate) { in verifyIpAddress() argument 85 if (ipAddress.equalsIgnoreCase(altName)) { in verifyIpAddress()
|
/external/nist-sip/java/javax/sip/ |
D | SipStack.java | 14 ListeningPoint createListeningPoint(String ipAddress, int port, in createListeningPoint() argument
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
D | DebugEventSocketProxy.cs | 104 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/ |
D | DebugEventSocketProxy.cs | 97 System.Net.IPAddress ipAddress = hostInfo.AddressList[0]; in Handshake() 98 serverSocket = new TcpListener(ipAddress, port); in Handshake()
|
/external/chromium_org/chrome/common/extensions/api/ |
D | mdns.idl | 20 DOMString ipAddress;
|