/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/nanohttpd/core/src/test/java/fi/iki/elonen/ |
D | HttpSessionHeadersTest.java | 25 for(String ipAddress : ipAddresses) { in testHeadersRemoteIp() 26 InetAddress inetAddress = InetAddress.getByName(ipAddress); in testHeadersRemoteIp() 28 assertEquals(ipAddress, session.getHeaders().get("remote-addr")); in testHeadersRemoteIp() 29 assertEquals(ipAddress, session.getHeaders().get("http-client-ip")); in testHeadersRemoteIp()
|
/external/chromium_org/net/android/java/src/org/chromium/net/ |
D | AndroidNetworkLibrary.java | 178 String ipAddress = address.getHostAddress(); in getNetworkList() local 179 if (address instanceof Inet6Address && ipAddress.contains("%")) { in getNetworkList() 180 ipAddress = ipAddress.substring(0, ipAddress.lastIndexOf("%")); in getNetworkList() 182 addressString.append(ipAddress); in getNetworkList()
|
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/ |
D | vie_autotest_network.cc | 271 char ipAddress[64]; in ViENetworkAPITest() local 272 memset(ipAddress, 0, 64); in ViENetworkAPITest() 274 tbChannel.videoChannel, rtpPort, rtcpPort, ipAddress)); in ViENetworkAPITest() 279 tbChannel.videoChannel, rtpPort, rtcpPort, ipAddress)); in ViENetworkAPITest() 293 tbChannel.videoChannel, ipAddress, rtpPort, rtcpPort, in ViENetworkAPITest() 307 tbChannel.videoChannel, ipAddress, rtpPort, rtcpPort, in ViENetworkAPITest() 316 EXPECT_EQ(0, ViE.network->GetLocalIP(ipAddress, false)); in ViENetworkAPITest() 324 tbChannel.videoChannel, rtpPort, rtcpPort, ipAddress)); in ViENetworkAPITest() 330 tbChannel.videoChannel, rtpPort, rtcpPort, ipAddress)); in ViENetworkAPITest() 334 tbChannel.videoChannel, rtpPort, rtcpPort, ipAddress)); in ViENetworkAPITest()
|
D | vie_autotest_record.cc | 74 const char* ipAddress = "127.0.0.1"; in VideoEngineSampleRecordCode() local 163 voice_channel_transport->SetSendDestination(ipAddress, audio_tx_port); in VideoEngineSampleRecordCode() 365 error = video_channel_transport->SetSendDestination(ipAddress, rtpPort); in VideoEngineSampleRecordCode()
|
D | vie_autotest_loopback.cc | 585 const char* ipAddress = "127.0.0.1"; in VideoEngineSampleCode() local 597 error = video_channel_transport->SetSendDestination(ipAddress, rtpPort); in VideoEngineSampleCode()
|
/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/tcpdump/ |
D | sctpHeader.h | 114 u_int32_t ipAddress; member 120 u_int8_t ipAddress[16]; member
|
/external/okhttp/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/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/ |
D | tb_video_channel.h | 35 const char* ipAddress = "127.0.0.1");
|
/external/nist-sip/java/javax/sip/ |
D | SipStack.java | 14 ListeningPoint createListeningPoint(String ipAddress, int port, in createListeningPoint() argument
|
/external/chromium_org/third_party/webrtc/test/channel_transport/ |
D | udp_transport_impl.cc | 2124 char ipAddress[kIpAddressVersion6Length]; in IncomingRTPFunction() local 2138 if (IPAddressCached(*fromSocket, ipAddress, ipAddressLength, portNr) < in IncomingRTPFunction() 2150 ipAddress[kIpAddressVersion6Length - 1] = 0; in IncomingRTPFunction() 2151 strncpy(_fromIP, ipAddress, kIpAddressVersion6Length - 1); in IncomingRTPFunction() 2177 "Incoming RTP packet from ip:%s port:%d", ipAddress, portNr); in IncomingRTPFunction() 2179 ipAddress, portNr); in IncomingRTPFunction() 2187 char ipAddress[kIpAddressVersion6Length]; in IncomingRTCPFunction() local 2200 if (IPAddress(*fromSocket, ipAddress, ipAddressLength, portNr) < 0) in IncomingRTCPFunction() 2210 ipAddress[kIpAddressVersion6Length - 1] = 0; in IncomingRTCPFunction() 2211 strncpy(_fromIP, ipAddress, kIpAddressVersion6Length - 1); in IncomingRTCPFunction() [all …]
|
/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/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/chromium_org/chrome/common/extensions/api/ |
D | mdns.idl | 20 DOMString ipAddress;
|
D | gcd_private.idl | 133 static void establishSession(DOMString ipAddress,
|
/external/chromium_org/extensions/common/api/ |
D | cast_channel.idl | 64 DOMString ipAddress;
|