OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:myPort
(Results
1 - 7
of
7
) sorted by null
/external/nist-sip/java/gov/nist/core/net/
DefaultNetworkLayer.java
126
* Creates a new Socket, binds it to myAddress:
myPort
and connects it to
133
* @param
myPort
the port that we are supposed to bind on or 0 for a random
136
* @return a new Socket, bound on myAddress:
myPort
and connected to
142
InetAddress myAddress, int
myPort
)
146
return new Socket(address, port, myAddress,
myPort
);
NetworkLayer.java
94
* Creates a new Socket, binds it to myAddress:
myPort
and connects it to
101
* @param
myPort
the port that we are supposed to bind on or 0 for a random
104
* @return a new Socket, bound on myAddress:
myPort
and connected to
110
InetAddress myAddress, int
myPort
)
SslNetworkLayer.java
136
* Creates a new Socket, binds it to myAddress:
myPort
and connects it to
143
* @param
myPort
the port that we are supposed to bind on or 0 for a random
146
* @return a new Socket, bound on myAddress:
myPort
and connected to
152
InetAddress myAddress, int
myPort
)
156
return new Socket(address, port, myAddress,
myPort
);
/external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageChannel.java
130
protected int
myPort
;
180
this.
myPort
= messageProcessor.getPort();
207
this.
myPort
= messageProcessor.getPort();
233
this.
myPort
= messageProcessor.getPort();
478
+ this.
myPort
, false, receptionTime);
[
all
...]
TCPMessageChannel.java
87
protected int
myPort
;
139
this.
myPort
= this.tcpMessageProcessor.getPort();
162
this.
myPort
= messageProcessor.getPort();
721
return
myPort
;
TLSMessageChannel.java
91
private int
myPort
;
153
this.
myPort
= this.tlsMessageProcessor.getPort();
177
this.
myPort
= messageProcessor.getPort();
700
return
myPort
;
/frameworks/base/core/java/android/net/http/
Request.java
385
int
myPort
= mHost.getPort();
388
if (
myPort
!= 80 && myScheme.equals("http") ||
389
myPort
!= 443 && myScheme.equals("https")) {
Completed in 435 milliseconds