Searched refs:pent (Results 1 - 11 of 11) 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/tcpdump/
H A Dprint-cnfp.c161 struct protoent *pent; local
213 pent = getprotobynumber(nr->proto);
214 if (!pent || ndo->ndo_nflag)
217 ND_PRINT((ndo, "%s ", pent->p_name));
220 if (pent && pent->p_proto == IPPROTO_TCP) {
251 struct protoent *pent; local
310 pent = getprotobynumber(nr->proto);
311 if (!pent || ndo->ndo_nflag)
314 ND_PRINT((ndo, "%s ", pent
348 struct protoent *pent; local
[all...]
/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/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/f2fs-tools/tools/
H A Df2fs_io_parse.c164 struct pid_ent *pent; local
166 pent = calloc(1, sizeof(struct pid_ent));
167 assert(pent);
170 pent->pid = atoh(ptr);
173 strcpy(pent->name, ptr);
175 LIST_INSERT_HEAD(&pid_info, pent, ptr);
/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.c1666 struct passwd *pent; local
1671 pent = getpwnam(username);
1672 if (pent == NULL) {
1675 run_uid = pent->pw_uid;
1676 run_gid = pent->pw_gid;
/external/libdrm/
H A Dxf86drm.c2767 struct dirent *pent, *ent; local
2799 pent = malloc(offsetof(struct dirent, d_name) + name_max + 1);
2800 if (pent == NULL)
2803 while (readdir_r(sysdir, pent, &ent) == 0 && ent != NULL) {
2808 free(pent);
2815 free(pent);
/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 238 milliseconds