Home | History | Annotate | Download | only in lib

Lines Matching refs:pe

30 	struct protoent *pe;
35 pe = getprotobynumber(proto);
36 if (pe) {
40 ncache = strdup(pe->p_name);
41 strlcpy(buf, pe->p_name, len);
52 struct protoent *pe;
61 pe = getprotobyname(buf);
62 if (pe) {
65 icache = pe->p_proto;
66 ncache = strdup(pe->p_name);
67 return pe->p_proto;