HomeSort by relevance Sort by last modified time
    Searched refs:hostPort (Results 1 - 6 of 6) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/address/
Authority.java 46 /** hostport field
48 protected HostPort hostPort;
66 hostPort.encode(buffer);
68 hostPort.encode(buffer);
84 if (!this.hostPort.equals(otherAuth.hostPort)) {
96 * get the hostPort member.
97 * @return HostPort
99 public HostPort getHostPort()
    [all...]
SipUri.java 400 public HostPort getHostPort() {
414 HostPort hp = this.getHostPort();
700 /** Set the hostPort field of the imbedded authority field.
701 *@param hostPort is the hostPort to set.
703 public void setHostPort(HostPort hostPort) {
707 authority.setHostPort(hostPort);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ViaParser.java 86 HostPort hostPort = hnp.hostPort( true );
87 v.setSentBy(hostPort);
  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 261 public HostPort hostPort( boolean allowWS ) throws ParseException {
263 dbg_enter("hostPort");
266 HostPort hp = new HostPort();
315 dbg_leave("hostPort");
334 HostPort hp = hnp.hostPort(true);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageChannel.java 33 import gov.nist.core.HostPort;
279 public static String getKey(HostPort hostPort, String transport) {
280 return (transport + ":" + hostPort.getHost().getHostname() + ":" + hostPort.getPort())
285 * Get the hostport structure of this message channel.
287 public HostPort getHostPort() {
288 HostPort retval = new HostPort();
297 * @return a HostPort structure for the peer
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
HttpURLConnectionImpl.java 212 int hostPort = usingProxy()
215 return hostPort < 0 ? getDefaultPort() : hostPort;

Completed in 546 milliseconds