Searched refs:pent (Results 1 - 9 of 9) sorted by relevance

/external/ltrace/
H A Dexecute_program.c46 struct passwd *pent; local
53 if ((pent = getpwnam(options.user)) == NULL) {
57 run_uid = pent->pw_uid;
58 run_gid = pent->pw_gid;
/external/iptables/extensions/
H A Dlibip6t_ipv6header.c70 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/
H A Dprint-cnfp.c86 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/e2fsprogs/lib/ext2fs/
H A Ddosio.c183 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
[all...]
/external/iptables/iptables/
H A Dxshared.c52 struct protoent *pent = getprotobynumber(proto); local
53 if (pent)
54 return pent->p_name;
H A Dip6tables.c980 const struct protoent *pent = getprotobynumber(proto); local
981 if (pent) {
983 invertstr, pent->p_name);
H A Diptables.c938 const struct protoent *pent = getprotobynumber(proto); local
939 if (pent) {
940 printf("%s -p %s", invertstr, pent->p_name);
/external/strace/
H A Dstrace.c1855 struct passwd *pent; local
1860 pent = getpwnam(username);
1861 if (pent == NULL) {
1864 run_uid = pent->pw_uid;
1865 run_gid = pent->pw_gid;
/external/iptables/libxtables/
H A Dxtables.c1891 const struct protoent *pent; local
1904 pent = getprotobyname(s);
1905 if (pent != NULL)
1906 return pent->p_proto;

Completed in 4083 milliseconds