OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:aport
(Results
1 - 15
of
15
) sorted by null
/libcore/luni/src/main/java/java/net/
DatagramPacket.java
80
* {@code
aPort
} of the address {@code host}. The {@code length} must be
92
* @param
aPort
95
public DatagramPacket(byte[] data, int offset, int length, InetAddress host, int
aPort
) {
97
setPort(
aPort
);
103
* {@code
aPort
} of the address {@code host}. The {@code length} must be
239
* @param
aPort
242
public synchronized void setPort(int
aPort
) {
243
if (
aPort
< 0 ||
aPort
> 65535) {
244
throw new IllegalArgumentException("Port out of range: " +
aPort
);
[
all
...]
DatagramSocket.java
70
* {@code
aPort
} on the localhost. Valid values for {@code
aPort
} are
73
* @param
aPort
78
public DatagramSocket(int
aPort
) throws SocketException {
79
checkPort(
aPort
);
80
createSocket(
aPort
, Inet4Address.ANY);
85
* address {@code addr} on port {@code
aPort
}. Valid values for {@code
86
*
aPort
} are between 0 and 65535 inclusive.
88
* @param
aPort
95
public DatagramSocket(int
aPort
, InetAddress addr) throws SocketException
[
all
...]
PlainSocketImpl.java
166
protected void connect(String aHost, int
aPort
) throws IOException {
167
connect(InetAddress.getByName(aHost),
aPort
);
171
protected void connect(InetAddress anAddr, int
aPort
) throws IOException {
172
connect(anAddr,
aPort
, 0);
180
* @param
aPort
187
private void connect(InetAddress anAddr, int
aPort
, int timeout) throws IOException {
190
socksConnect(anAddr,
aPort
, 0);
192
IoBridge.connect(fd, normalAddr,
aPort
, timeout);
195
super.port =
aPort
;
ServerSocket.java
136
private void checkListen(int
aPort
) {
137
if (
aPort
< 0 ||
aPort
> 65535) {
138
throw new IllegalArgumentException("Port out of range: " +
aPort
);
MulticastSocket.java
326
synchronized void createSocket(int
aPort
, InetAddress addr) throws SocketException {
331
impl.bind(
aPort
, addr);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugEventProxy.m
47
- (id) initWithGrammarName:(NSString *)aGrammarName debuggerPort:(NSInteger)
aPort
53
if (
aPort
== -1)
aPort
= DEFAULT_DEBUGGER_PORT;
54
[self setDebuggerPort:
aPort
];
ANTLRDebugEventProxy.h
51
- (id) initWithGrammarName:(NSString *)aGrammarName debuggerPort:(NSInteger)
aPort
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDebugEventProxy.h
51
- (id) initWithGrammarName:(NSString *)aGrammarName debuggerPort:(NSInteger)
aPort
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugEventProxy.h
51
- (id) initWithGrammarName:(NSString *)aGrammarName debuggerPort:(NSInteger)
aPort
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDebugEventProxy.h
51
- (id) initWithGrammarName:(NSString *)aGrammarName debuggerPort:(NSInteger)
aPort
;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
MulticastSocketTest.java
114
public MulticastServer(InetAddress anAddress, int
aPort
) throws java.io.IOException {
118
ms = new MulticastSocket(
aPort
);
124
public MulticastServer(SocketAddress anAddress, int
aPort
, NetworkInterface netInterface) throws java.io.IOException {
128
ms = new MulticastSocket(
aPort
);
[
all
...]
DatagramSocketTest.java
89
public DatagramServer(int
aPort
, InetAddress address)
94
ms = new DatagramSocket(
aPort
, address);
207
public DatagramServer(int
aPort
, InetAddress address)
212
ms = new DatagramSocket(
aPort
, address);
[
all
...]
/libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketTest.java
92
public DatagramServer(int
aPort
, InetAddress address)
97
ms = new DatagramSocket(
aPort
, address);
343
public DatagramServer(int
aPort
, InetAddress address)
348
ms = new DatagramSocket(
aPort
, address);
[
all
...]
/prebuilts/sdk/7/
android.jar
/external/chromium_org/chrome/app/resources/
generated_resources_ro.xtb
[
all
...]
Completed in 464 milliseconds