OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pent
(Results
1 - 8
of
8
) sorted by null
/external/iptables/iptables/
xshared.c
46
struct protoent *
pent
= getprotobynumber(proto);
local
47
if (
pent
)
48
return
pent
->p_name;
ip6tables.c
1018
const struct protoent *
pent
= getprotobynumber(proto);
local
1019
if (
pent
) {
1021
invertstr,
pent
->p_name);
[
all
...]
iptables.c
996
const struct protoent *
pent
= getprotobynumber(proto);
local
997
if (
pent
) {
998
printf("%s -p %s", invertstr,
pent
->p_name);
[
all
...]
xtables.c
1806
const struct protoent *
pent
;
local
[
all
...]
/external/e2fsprogs/lib/ext2fs/
dosio.c
183
PTABLE_ENTRY *
pent
;
local
309
pent
= (PTABLE_ENTRY*)&sec[0x1BE];
310
pent
= scan_partition_table(
pent
, part->phys, &part->pno);
312
if(!
pent
)
327
fsec = (unsigned long)(
pent
->start_sec & 0x3F);
328
fhead = (unsigned long)
pent
->start_head;
329
fcyl = ((
pent
->start_sec >> 6) << 8) +
pent
->start_cyl;
332
part->len =
pent
->size
[
all
...]
/external/iptables/extensions/
libip6t_ipv6header.c
70
const struct protoent *
pent
= getprotobynumber(proto);
local
71
if (
pent
)
72
return
pent
->p_name;
86
const struct protoent *
pent
;
local
88
if ((
pent
= getprotobyname(s)))
89
proto =
pent
->p_proto;
/external/tcpdump/
print-cnfp.c
86
struct protoent *
pent
;
local
155
pent
= getprotobynumber((EXTRACT_32BITS(&nr->proto_tos) >> 8) & 0xff);
156
if (!
pent
|| nflag)
160
printf("%s ",
pent
->p_name);
163
if (
pent
&&
pent
->p_proto == IPPROTO_TCP) {
/external/strace/
strace.c
939
struct passwd *
pent
;
local
947
if ((
pent
= getpwnam(username)) == NULL) {
952
run_uid =
pent
->pw_uid;
953
run_gid =
pent
->pw_gid;
[
all
...]
Completed in 838 milliseconds