HomeSort by relevance Sort by last modified time
    Searched refs:hostPort (Results 1 - 11 of 11) 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/jmonkeyengine/engine/src/networking/com/jme3/network/
Network.java 121 public static Client connectToServer( String host, int hostPort ) throws IOException
123 return connectToServer( DEFAULT_GAME_NAME, DEFAULT_VERSION, host, hostPort, hostPort );
130 public static Client connectToServer( String host, int hostPort, int remoteUdpPort ) throws IOException
132 return connectToServer( DEFAULT_GAME_NAME, DEFAULT_VERSION, host, hostPort, remoteUdpPort );
140 String host, int hostPort ) throws IOException
142 return connectToServer( gameName, version, host, hostPort, hostPort );
154 * @param hostPort The remote TCP port on the server to which this client should
162 String host, int hostPort, int remoteUdpPort ) throws IOExceptio
    [all...]
  /cts/suite/audio_quality/lib/src/
Adb.h 29 bool setPortForwarding(int hostPort, int devicePort);
Adb.cpp 32 bool Adb::setPortForwarding(int hostPort, int devicePort)
35 if (command.appendFormat("forward tcp:%d tcp:%d", hostPort, devicePort) != 0) {
  /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 221 int hostPort = usingProxy()
224 return hostPort < 0 ? getDefaultPort() : hostPort;
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpURLConnectionImpl.java 227 int hostPort = Util.getEffectivePort(getURL());
231 hostPort = proxyAddress.getPort();
233 return new SocketPermission(hostName + ":" + hostPort, "connect, resolve");
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 

Completed in 1022 milliseconds