Home
last modified time | relevance | path

Searched refs:mPort (Results 1 – 2 of 2) sorted by relevance

/external/apache-http/android/src/android/net/compatibility/
DWebAddress.java43 private int mPort; field in WebAddress
71 mPort = -1; in WebAddress()
88 mPort = Integer.parseInt(t); in WebAddress()
111 if (mPort == 443 && mScheme.equals("")) { in WebAddress()
113 } else if (mPort == -1) { in WebAddress()
115 mPort = 443; in WebAddress()
117 mPort = 80; // default in WebAddress()
125 if ((mPort != 443 && mScheme.equals("https")) || in toString()
126 (mPort != 80 && mScheme.equals("http"))) { in toString()
127 port = ":" + Integer.toString(mPort); in toString()
[all …]
/external/nist-sip/java/javax/sip/
DIOExceptionEvent.java7 private int mPort; field in IOExceptionEvent
14 mPort = port; in IOExceptionEvent()
23 return mPort; in getPort()