OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:port_invalid
(Results
1 - 7
of
7
) sorted by null
/libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLServerSocketTest.java
137
int[]
port_invalid
= {-1, 65536, Integer.MIN_VALUE, Integer.MAX_VALUE};
local
146
for (int i = 0; i <
port_invalid
.length; i++) {
148
ssl = new mySSLServerSocket(
port_invalid
[i]);
174
int[]
port_invalid
= {-1, Integer.MIN_VALUE, Integer.MAX_VALUE};
local
183
for (int i = 0; i <
port_invalid
.length; i++) {
185
ssl = new mySSLServerSocket(
port_invalid
[i], 1);
210
int[]
port_invalid
= {-1, 65536, Integer.MIN_VALUE, Integer.MAX_VALUE};
local
227
for (int i = 0; i <
port_invalid
.length; i++) {
229
ssl = new mySSLServerSocket(
port_invalid
[i], 1, InetAddress.getLocalHost());
/external/chromium/googleurl/src/
url_parse.cc
467
return
PORT_INVALID
;
475
return
PORT_INVALID
;
485
return
PORT_INVALID
; // Out of range.
gurl_unittest.cc
149
EXPECT_EQ(url_parse::
PORT_INVALID
, url.IntPort());
url_canon_etc.cc
231
if (port_num == url_parse::
PORT_INVALID
) {
url_parse.h
289
enum SpecialPort { PORT_UNSPECIFIED = -1,
PORT_INVALID
= -2 };
/external/webkit/Source/WebCore/platform/
KURLGoogle.cpp
502
if (port == url_parse::
PORT_INVALID
|| port > maximumValidPortNumber) // Mimic KURL::port()
[
all
...]
/external/chromium/net/base/
net_util.cc
[
all
...]
Completed in 87 milliseconds