OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:p_port
(Results
1 - 3
of
3
) sorted by null
/external/ipsec-tools/src/racoon/
racoonctl.c
929
char *p_name = NULL, *
p_port
= NULL;
local
939
if (get_comindex(*av, &p_name, &
p_port
, &p_prefs) == -1)
941
src = get_sockaddr(family, p_name,
p_port
);
946
if (
p_port
) {
947
racoon_free(
p_port
);
948
p_port
= NULL;
954
if (get_comindex(*av, &p_name, &
p_port
, &p_prefd) == -1)
956
dst = get_sockaddr(family, p_name,
p_port
);
961
if (
p_port
) {
962
racoon_free(
p_port
);
[
all
...]
/libcore/luni/src/main/java/org/apache/xml/serializer/utils/
URI.java
272
* @param
p_port
the URI port (may be -1 for "unspecified"; cannot
287
public URI(String p_scheme, String p_userinfo, String p_host, int
p_port
, String p_path, String p_queryString, String p_fragment)
304
if (
p_port
!= -1)
328
setPort(
p_port
);
1121
* @param
p_port
the port number for this URI
1123
* @throws MalformedURIException if
p_port
is not -1 and not a
1126
public void setPort(int
p_port
) throws MalformedURIException
1129
if (
p_port
>= 0 &&
p_port
<= 65535)
1137
else if (
p_port
!= -1
[
all
...]
/libcore/luni/src/main/java/org/apache/xml/utils/
URI.java
269
* @param
p_port
the URI port (may be -1 for "unspecified"; cannot
284
public URI(String p_scheme, String p_userinfo, String p_host, int
p_port
, String p_path, String p_queryString, String p_fragment)
301
if (
p_port
!= -1)
325
setPort(
p_port
);
[
all
...]
Completed in 236 milliseconds