OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HostPort
(Results
1 - 25
of
26
) sorted by null
1
2
/external/jcommander/src/test/java/com/beust/jcommander/
HostPortConverter.java
21
public class HostPortConverter implements IStringConverter<
HostPort
> {
23
public
HostPort
convert(String value) {
24
HostPort
result = new
HostPort
();
HostPort.java
21
public class
HostPort
{
ConverterFactoryTest.java
39
put(
HostPort
.class, HostPortConverter.class);
55
jc.parse("-
hostport
", "example.com:8080");
57
Assert.assertEquals(a.
hostPort
.host, "example.com");
58
Assert.assertEquals(a.
hostPort
.port.intValue(), 8080);
/external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsConverterFactory.java
21
import com.beust.jcommander.
HostPort
;
26
@Parameter(names = "-
hostport
")
27
public
HostPort
hostPort
;
IHostPorts.java
21
import com.beust.jcommander.
HostPort
;
26
List<
HostPort
> getHostPorts();
ArgsMainParameter1.java
21
import com.beust.jcommander.
HostPort
;
35
public List<
HostPort
> parameters = Lists.newArrayList();
37
public List<
HostPort
> getHostPorts() {
ArgsMainParameter2.java
21
import com.beust.jcommander.
HostPort
;
36
public List<
HostPort
> parameters = Lists.newArrayList();
38
public List<
HostPort
> getHostPorts() {
ArgsList.java
3
import com.beust.jcommander.
HostPort
;
22
public List<
HostPort
> hostPorts;
25
public List<
HostPort
> hp2;
/external/nist-sip/java/gov/nist/core/
HostPort.java
42
public final class
HostPort
extends GenericObject {
59
public
HostPort
() {
66
* Encode this
hostport
into its string representation.
91
HostPort
that = (
HostPort
) other;
153
port = ((
HostPort
) mergeObject).port;
157
HostPort
retval = (
HostPort
) super.clone();
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/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
...]
AddressImpl.java
101
*@return host:port in a
HostPort
structure.
103
public
HostPort
getHostPort() {
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/stack/
MessageProcessor.java
29
import gov.nist.core.
HostPort
;
67
private
HostPort
sentByHostPort;
134
this.sentByHostPort = new
HostPort
();
240
this.sentByHostPort = new
HostPort
();
243
this.sentByHostPort = new
HostPort
();
284
public abstract MessageChannel createMessageChannel(
HostPort
targetHostPort)
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
...]
TLSMessageProcessor.java
43
import gov.nist.core.
HostPort
;
230
public synchronized MessageChannel createMessageChannel(
HostPort
targetHostPort)
TCPMessageProcessor.java
214
public synchronized MessageChannel createMessageChannel(
HostPort
targetHostPort)
UDPMessageProcessor.java
309
public MessageChannel createMessageChannel(
HostPort
targetHostPort)
/external/nist-sip/java/gov/nist/javax/sip/header/
Via.java
32
import gov.nist.core.
HostPort
;
89
protected
HostPort
sentBy;
147
public
HostPort
getSentBy() {
222
sentBy = new
HostPort
();
237
* @param s
HostPort
to set.
239
public void setSentBy(
HostPort
s) {
283
sentBy = new
HostPort
();
322
sentBy = new
HostPort
();
538
retval.sentBy = (
HostPort
) this.sentBy.clone();
ReplyTo.java
99
* Conveniance accessor function to get the
hostPort
field from the address
100
* @return
HostPort
102
public
HostPort
getHostPort() {
From.java
31
import gov.nist.core.
HostPort
;
96
* Conveniance accessor function to get the
hostPort
field from the address.
99
* @return
hostport
field
101
public
HostPort
getHostPort() {
To.java
31
import gov.nist.core.
HostPort
;
112
* Conveniance accessor function to get the
hostPort
field from the address.
115
* @return
hostport
field
117
public
HostPort
getHostPort() {
/external/nist-sip/java/gov/nist/javax/sip/
ListeningPointImpl.java
38
import gov.nist.core.
HostPort
;
248
HostPort
targetHostPort = new
HostPort
();
/external/nist-sip/java/gov/nist/javax/sip/parser/
URLParser.java
28
import gov.nist.core.
HostPort
;
318
HostPort
hp = hnp.
hostPort
( false );
633
// name@
hostPort
644
HostPort
hp = hnp.
hostPort
( false );
ViaParser.java
86
HostPort
hostPort
= hnp.
hostPort
( true );
87
v.setSentBy(
hostPort
);
Completed in 262 milliseconds
1
2