/external/nist-sip/java/gov/nist/core/ |
D | HostPort.java | 42 public final class HostPort extends GenericObject { class 59 public HostPort() { in HostPort() method in HostPort 91 HostPort that = (HostPort) other; in equals() 153 port = ((HostPort) mergeObject).port; in merge() 157 HostPort retval = (HostPort) super.clone(); in clone()
|
D | HostNameParser.java | 261 public HostPort hostPort( boolean allowWS ) throws ParseException { in hostPort() 266 HostPort hp = new HostPort(); in hostPort() 334 HostPort hp = hnp.hostPort(true); in main()
|
/external/jcommander/src/test/java/com/beust/jcommander/ |
D | HostPortConverter.java | 21 public class HostPortConverter implements IStringConverter<HostPort> { 23 public HostPort convert(String value) { in convert() 24 HostPort result = new HostPort(); in convert()
|
D | ConverterFactoryTest.java | 39 put(HostPort.class, HostPortConverter.class); 96 return HostPort.class.equals(forType) ? new HostPortConverter() : null; in mainWithInstanceFactory()
|
D | HostPort.java | 21 public class HostPort { class
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
D | Authority.java | 48 protected HostPort hostPort; 99 public HostPort getHostPort() { in getHostPort() 185 hostPort = new HostPort(); in setHost() 195 hostPort = new HostPort(); in setPort() 203 public void setHostPort(HostPort h) { in setHostPort() 225 retval.hostPort = (HostPort) this.hostPort.clone(); in clone()
|
D | SipUri.java | 400 public HostPort getHostPort() { in getHostPort() 414 HostPort hp = this.getHostPort(); in getPort() 703 public void setHostPort(HostPort hostPort) { in setHostPort()
|
D | AddressImpl.java | 103 public HostPort getHostPort() { in getHostPort()
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
D | MessageChannel.java | 33 import gov.nist.core.HostPort; 279 public static String getKey(HostPort hostPort, String transport) { in getKey() 287 public HostPort getHostPort() { in getHostPort() 288 HostPort retval = new HostPort(); in getHostPort() 299 public HostPort getPeerHostPort() { in getPeerHostPort() 300 HostPort retval = new HostPort(); in getPeerHostPort() 329 public HostPort getViaHostPort() { in getViaHostPort() 330 HostPort retval = new HostPort(); in getViaHostPort()
|
D | MessageProcessor.java | 29 import gov.nist.core.HostPort; 67 private HostPort sentByHostPort; 134 this.sentByHostPort = new HostPort(); in initialize() 240 this.sentByHostPort = new HostPort(); in setSentBy() 243 this.sentByHostPort = new HostPort(); in setSentBy() 284 public abstract MessageChannel createMessageChannel(HostPort targetHostPort) in createMessageChannel()
|
D | TLSMessageProcessor.java | 43 import gov.nist.core.HostPort; 230 public synchronized MessageChannel createMessageChannel(HostPort targetHostPort) in createMessageChannel()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | Via.java | 32 import gov.nist.core.HostPort; 89 protected HostPort sentBy; 147 public HostPort getSentBy() { in getSentBy() 222 sentBy = new HostPort(); in setHost() 239 public void setSentBy(HostPort s) { in setSentBy() 283 sentBy = new HostPort(); in setHost() 322 sentBy = new HostPort(); in setPort() 538 retval.sentBy = (HostPort) this.sentBy.clone(); in clone()
|
D | From.java | 31 import gov.nist.core.HostPort; 101 public HostPort getHostPort() { in getHostPort()
|
D | To.java | 31 import gov.nist.core.HostPort; 117 public HostPort getHostPort() { in getHostPort()
|
D | ReplyTo.java | 102 public HostPort getHostPort() { in getHostPort()
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
D | ArgsMainParameter1.java | 21 import com.beust.jcommander.HostPort; 35 public List<HostPort> parameters = Lists.newArrayList(); 37 public List<HostPort> getHostPorts() { in getHostPorts()
|
D | ArgsMainParameter2.java | 21 import com.beust.jcommander.HostPort; 36 public List<HostPort> parameters = Lists.newArrayList(); 38 public List<HostPort> getHostPorts() { in getHostPorts()
|
D | ArgsList.java | 3 import com.beust.jcommander.HostPort; 22 public List<HostPort> hostPorts; 25 public List<HostPort> hp2;
|
D | IHostPorts.java | 21 import com.beust.jcommander.HostPort; 26 List<HostPort> getHostPorts(); in getHostPorts()
|
D | ArgsConverterFactory.java | 21 import com.beust.jcommander.HostPort; 27 public HostPort hostPort;
|
/external/nist-sip/java/gov/nist/javax/sip/ |
D | ListeningPointImpl.java | 38 import gov.nist.core.HostPort; 248 HostPort targetHostPort = new HostPort(); in sendHeartbeat()
|
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/ |
D | NettyChannelBuilderTest.java | 175 ProtocolNegotiators.HostPort hostPort = n.parseAuthority("authority:1234"); in createProtocolNegotiatorByType_tlsWithClientContext() 189 ProtocolNegotiators.HostPort hostPort = n.parseAuthority("bad_authority"); in createProtocolNegotiatorByType_tlsWithAuthorityFallback()
|
D | ProtocolNegotiatorsTest.java | 30 import io.grpc.netty.ProtocolNegotiators.HostPort; 264 HostPort hostPort = negotiator.parseAuthority("authority:1234"); in tls_hostAndPort() 274 HostPort hostPort = negotiator.parseAuthority("[::1]"); in tls_host() 284 HostPort hostPort = negotiator.parseAuthority("bad_host:1234"); in tls_invalidHost()
|
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
D | ProtocolNegotiators.java | 290 HostPort parseAuthority(String authority) { 309 return new HostPort(host, port); 314 final HostPort hostPort = parseAuthority(handler.getAuthority()); 335 static final class HostPort { 339 public HostPort(String host, int port) {
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | URLParser.java | 28 import gov.nist.core.HostPort; 318 HostPort hp = hnp.hostPort( false ); in uricString() 644 HostPort hp = hnp.hostPort( false ); in sipURL()
|