Symbol: protoent
include/netdb.h
259
struct protoent *getprotobyname(const char *);
include/netdb.h
260
struct protoent *getprotobynumber(int);
include/netdb.h
261
struct protoent *getprotoent(void);
include/netdb.h
300
int getprotobyname_r(const char *, struct protoent *, char *,
include/netdb.h
301
size_t, struct protoent **);
include/netdb.h
302
int getprotobynumber_r(int, struct protoent *, char *, size_t,
include/netdb.h
303
struct protoent **);
include/netdb.h
304
int getprotoent_r(struct protoent *, char *, size_t,
include/netdb.h
305
struct protoent **);
lib/libbluetooth/bluetooth.c
173
struct protoent *
lib/libbluetooth/bluetooth.c
176
struct protoent *p;
lib/libbluetooth/bluetooth.c
193
struct protoent *
lib/libbluetooth/bluetooth.c
196
struct protoent *p;
lib/libbluetooth/bluetooth.c
207
struct protoent *
lib/libbluetooth/bluetooth.c
52
static struct protoent proto;
lib/libbluetooth/bluetooth.h
59
struct protoent * bt_getprotobyname (char const *);
lib/libbluetooth/bluetooth.h
60
struct protoent * bt_getprotobynumber (int);
lib/libbluetooth/bluetooth.h
61
struct protoent * bt_getprotoent (void);
lib/libc/net/getproto.c
120
struct protoent *
lib/libc/net/getproto.c
124
struct protoent *rval;
lib/libc/net/getproto.c
49
struct protoent pe;
lib/libc/net/getproto.c
54
struct protoent *pptr;
lib/libc/net/getproto.c
60
pptr = va_arg(ap, struct protoent *);
lib/libc/net/getproto.c
85
*((struct protoent **)retval) = pptr;
lib/libc/net/getproto.c
90
getprotobynumber_r(int proto, struct protoent *pptr, char *buffer,
lib/libc/net/getproto.c
91
size_t buflen, struct protoent **result)
lib/libc/net/getprotoent.c
145
struct protoent *proto;
lib/libc/net/getprotoent.c
149
struct protoent new_proto;
lib/libc/net/getprotoent.c
168
proto = va_arg(ap, struct protoent *);
lib/libc/net/getprotoent.c
172
desired_size = _ALIGNBYTES + sizeof(struct protoent) + sizeof(char *);
lib/libc/net/getprotoent.c
193
memcpy(&new_proto, proto, sizeof(struct protoent));
lib/libc/net/getprotoent.c
197
p = buffer + sizeof(struct protoent) + sizeof(char *);
lib/libc/net/getprotoent.c
198
memcpy(buffer + sizeof(struct protoent), &p, sizeof(char *));
lib/libc/net/getprotoent.c
222
memcpy(buffer, &new_proto, sizeof(struct protoent));
lib/libc/net/getprotoent.c
232
struct protoent *proto;
lib/libc/net/getprotoent.c
254
proto = va_arg(ap, struct protoent *);
lib/libc/net/getprotoent.c
260
buffer_size - sizeof(struct protoent) - sizeof(char *)) {
lib/libc/net/getprotoent.c
265
memcpy(proto, buffer, sizeof(struct protoent));
lib/libc/net/getprotoent.c
266
memcpy(&p, buffer + sizeof(struct protoent), sizeof(char *));
lib/libc/net/getprotoent.c
269
memcpy(orig_buf, buffer + sizeof(struct protoent) + sizeof(char *) +
lib/libc/net/getprotoent.c
271
buffer_size - sizeof(struct protoent) - sizeof(char *) -
lib/libc/net/getprotoent.c
284
*((struct protoent **)retval) = proto;
lib/libc/net/getprotoent.c
293
__copy_protoent(struct protoent *pe, struct protoent *pptr, char *buf,
lib/libc/net/getprotoent.c
359
__getprotoent_p(struct protoent *pe, struct protoent_data *ped)
lib/libc/net/getprotoent.c
411
struct protoent pe;
lib/libc/net/getprotoent.c
414
struct protoent *pptr;
lib/libc/net/getprotoent.c
419
pptr = va_arg(ap, struct protoent *);
lib/libc/net/getprotoent.c
437
*((struct protoent **)retval) = pptr;
lib/libc/net/getprotoent.c
469
getprotoent_r(struct protoent *pptr, char *buffer, size_t buflen,
lib/libc/net/getprotoent.c
470
struct protoent **result)
lib/libc/net/getprotoent.c
538
struct protoent *
lib/libc/net/getprotoent.c
542
struct protoent *rval;
lib/libc/net/getprotoname.c
100
size_t buflen, struct protoent **result)
lib/libc/net/getprotoname.c
128
struct protoent *
lib/libc/net/getprotoname.c
132
struct protoent *rval;
lib/libc/net/getprotoname.c
50
struct protoent pe;
lib/libc/net/getprotoname.c
56
struct protoent *pptr;
lib/libc/net/getprotoname.c
62
pptr = va_arg(ap, struct protoent *);
lib/libc/net/getprotoname.c
93
*((struct protoent **)retval) = pptr;
lib/libc/net/getprotoname.c
99
getprotobyname_r(const char *name, struct protoent *pptr, char *buffer,
lib/libc/net/netdb_private.h
114
struct protoent proto;
lib/libc/net/netdb_private.h
127
int __copy_protoent(struct protoent *, struct protoent *, char *, size_t);
lib/libc/net/netdb_private.h
130
int __getprotoent_p(struct protoent *, struct protoent_data *);
lib/libc/resolv/res_mkupdate.c
1017
struct protoent *pp;
lib/libc/resolv/res_mkupdate.c
1135
static struct protoent *
lib/libc/resolv/res_mkupdate.c
1139
static struct protoent prot;
lib/libc/resolv/res_mkupdate.c
1161
struct protoent *pp;
lib/libipfw3/basic/ipfw3_basic.c
204
struct protoent *pe = NULL;
lib/libipfw3/basic/ipfw3_basic.c
238
struct protoent *pe;
lib/libipfw3/basic/ipfw3_basic.c
850
struct protoent *pe;
sbin/ip6fw/ip6fw.c
164
struct protoent *pe;
sbin/ip6fw/ip6fw.c
215
struct protoent *pe;
sbin/ip6fw/ip6fw.c
844
struct protoent *pe;
sbin/ipfw/ipfw2.c
1074
struct protoent *pe;
sbin/ipfw/ipfw2.c
1267
struct protoent *pe;
sbin/ipfw/ipfw2.c
1362
struct protoent *pe;
sbin/ipfw/ipfw2.c
2559
struct protoent *pe;
sbin/ipfw/ipfw2.c
399
struct protoent *pe = getprotobynumber(proto);
sbin/ipfw/ipfw2.c
487
struct protoent *pe = NULL;
sbin/ipfw3/ipfw3dummynet.c
583
struct protoent *pe;
sbin/natd/natd.c
1483
struct protoent *protoent;
sbin/natd/natd.c
1493
protoent = getprotobyname(protoName);
sbin/natd/natd.c
1494
if (protoent == NULL)
sbin/natd/natd.c
1497
proto = protoent->p_proto;
sys/netgraph/cisco/ng_cisco.c
105
struct protoent downstream;
sys/netgraph/cisco/ng_cisco.c
106
struct protoent inet; /* IP information */
sys/netgraph/cisco/ng_cisco.c
109
struct protoent inet6; /* IPv6 information */
sys/netgraph/cisco/ng_cisco.c
110
struct protoent ipx; /* IPX information */
sys/netgraph/cisco/ng_cisco.c
350
struct protoent *pep;
sys/netgraph/cisco/ng_cisco.c
422
struct protoent *pep;
sys/netgraph/cisco/ng_cisco.c
447
struct protoent *pep;
sys/netgraph7/cisco/ng_cisco.c
103
struct protoent downstream;
sys/netgraph7/cisco/ng_cisco.c
104
struct protoent inet; /* IP information */
sys/netgraph7/cisco/ng_cisco.c
107
struct protoent inet6; /* IPv6 information */
sys/netgraph7/cisco/ng_cisco.c
108
struct protoent ipx; /* IPX information */
sys/netgraph7/cisco/ng_cisco.c
340
struct protoent *pep;
sys/netgraph7/cisco/ng_cisco.c
411
struct protoent *pep;
sys/netgraph7/cisco/ng_cisco.c
436
struct protoent *pep;
usr.bin/fstat/fstat.c
1009
struct protoent *pe;
usr.bin/getaddrinfo/getaddrinfo.c
188
struct protoent *protoent;
usr.bin/getaddrinfo/getaddrinfo.c
205
protoent = getprotobyname(string);
usr.bin/getaddrinfo/getaddrinfo.c
206
if (protoent == NULL)
usr.bin/getaddrinfo/getaddrinfo.c
209
*protop = protoent->p_proto;
usr.bin/getaddrinfo/getaddrinfo.c
265
struct protoent *protoent;
usr.bin/getaddrinfo/getaddrinfo.c
289
protoent = getprotobynumber(ai->ai_protocol);
usr.bin/getaddrinfo/getaddrinfo.c
290
if (protoent == NULL)
usr.bin/getaddrinfo/getaddrinfo.c
293
n = printf(" %s", protoent->p_name);
usr.bin/getent/getent.c
411
struct protoent *pe;
usr.bin/netstat/main.c
582
struct protoent *p;
usr.sbin/pfctl/parse.y
2691
struct protoent *p;
usr.sbin/pfctl/parse.y
4759
struct protoent *pe;
usr.sbin/pfctl/pf_print_state.c
212
struct protoent *p;
usr.sbin/pfctl/pfctl_parser.c
774
struct protoent *p;
usr.sbin/ppp/filter.c
134
ParseUdpOrTcp(int argc, char const *const *argv, const struct protoent *pe,
usr.sbin/ppp/filter.c
246
struct protoent *pe;
usr.sbin/ppp/filter.c
453
struct protoent *pe;
usr.sbin/ppp/ip.c
168
struct protoent *pe;
usr.sbin/ppp/nat_cmd.c
245
struct protoent *pe;
usr.sbin/traceroute/traceroute.c
419
struct protoent *pent;