Searched refs:protoent (Results 1 - 25 of 60) sorted by relevance

123

/freebsd-11-stable/lib/libc/tests/nss/
H A Dgetproto_test.c53 DECLARE_TEST_DATA(protoent)
54 DECLARE_TEST_FILE_SNAPSHOT(protoent)
55 DECLARE_1PASS_TEST(protoent)
56 DECLARE_2PASS_TEST(protoent)
58 static void clone_protoent(struct protoent *, struct protoent const *);
59 static int compare_protoent(struct protoent *, struct protoent *, void *);
60 static void dump_protoent(struct protoent *);
61 static void free_protoent(struct protoent *);
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/net/
H A Dt_protoent.sh28 atf_test_case protoent
31 atf_set "descr" "Checks {get,set,end}protoent(3)"
90 atf_add_test_case protoent
H A Dh_protoent.c38 pserv(const struct protoent *prp)
62 struct protoent *prp;
H A Dt_getprotoent.c57 struct protoent *p;
86 struct protoent *p;
129 struct protoent *p;
172 struct protoent *p;
194 struct protoent *p;
/freebsd-11-stable/lib/libc/net/
H A Dgetproto.c53 struct protoent pe;
58 struct protoent *pptr;
64 pptr = va_arg(ap, struct protoent *);
89 *((struct protoent **)retval) = pptr;
94 getprotobynumber_r(int proto, struct protoent *pptr, char *buffer,
95 size_t buflen, struct protoent **result)
125 struct protoent *
129 struct protoent *rval;
H A Dgetprotoname.c60 struct protoent pe;
66 struct protoent *pptr;
72 pptr = va_arg(ap, struct protoent *);
103 *((struct protoent **)retval) = pptr;
109 getprotobyname_r(const char *name, struct protoent *pptr, char *buffer,
110 size_t buflen, struct protoent **result)
139 struct protoent *
143 struct protoent *rval;
H A Dgetprotoent.c147 struct protoent *proto;
151 struct protoent new_proto;
170 proto = va_arg(ap, struct protoent *);
174 desired_size = _ALIGNBYTES + sizeof(struct protoent) + sizeof(char *);
195 memcpy(&new_proto, proto, sizeof(struct protoent));
199 p = buffer + sizeof(struct protoent) + sizeof(char *);
200 memcpy(buffer + sizeof(struct protoent), &p, sizeof(char *));
224 memcpy(buffer, &new_proto, sizeof(struct protoent));
234 struct protoent *proto;
256 proto = va_arg(ap, struct protoent *);
[all...]
H A Dnetdb_private.h114 struct protoent proto;
127 int __copy_protoent(struct protoent *, struct protoent *, char *, size_t);
130 int __getprotoent_p(struct protoent *, struct protoent_data *);
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dgetproto.c17 struct protoent *p;
H A Dgetportproto.c19 struct protoent *p;
H A Dprintproto.c17 struct protoent *pr;
H A Dportname.c17 struct protoent *p = NULL;
H A Dgetport.c19 struct protoent *p;
/freebsd-11-stable/include/
H A Dnetdb.h127 struct protoent { struct
239 struct protoent *getprotobyname(const char *);
240 struct protoent *getprotobynumber(int);
241 struct protoent *getprotoent(void);
279 int getprotobyname_r(const char *, struct protoent *, char *,
280 size_t, struct protoent **);
281 int getprotobynumber_r(int, struct protoent *, char *, size_t,
282 struct protoent **);
283 int getprotoent_r(struct protoent *, char *, size_t,
284 struct protoent **);
[all...]
/freebsd-11-stable/usr.bin/getaddrinfo/
H A Dgetaddrinfo.c191 struct protoent *protoent; local
208 protoent = getprotobyname(string);
209 if (protoent == NULL)
212 *protop = protoent->p_proto;
268 struct protoent *protoent; local
292 protoent = getprotobynumber(ai->ai_protocol);
293 if (protoent == NULL)
296 n = printf(" %s", protoent
[all...]
/freebsd-11-stable/lib/libbluetooth/
H A Dbluetooth.c52 static struct protoent proto;
173 struct protoent *
176 struct protoent *p;
193 struct protoent *
196 struct protoent *p;
207 struct protoent *
H A Dbluetooth.h79 struct protoent * bt_getprotobyname (char const *name);
80 struct protoent * bt_getprotobynumber (int proto);
81 struct protoent * bt_getprotoent (void);
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dgetaddrinfo.c55 struct protoent *protoent = getprotobynumber (hints->ai_protocol); local
57 if (protoent == NULL)
60 proto_str = protoent->p_name;
61 *protocol = protoent->p_proto;
/freebsd-11-stable/sys/netgraph/
H A Dng_cisco.c91 struct protoent { struct
103 struct protoent downstream;
104 struct protoent inet; /* IP information */
107 struct protoent inet6; /* IPv6 information */
108 struct protoent atalk; /* AppleTalk information */
109 struct protoent ipx; /* IPX information */
343 struct protoent *pep;
418 struct protoent *pep;
443 struct protoent *pep;
/freebsd-11-stable/contrib/tcp_wrappers/
H A Dfix_options.c45 struct protoent *ip;
/freebsd-11-stable/usr.bin/bluetooth/bthost/
H A Dbthost.c113 struct protoent *pe = NULL;
/freebsd-11-stable/contrib/gcc/
H A Dsys-types.h76 struct protoent;
/freebsd-11-stable/contrib/libpcap/
H A Dnametoaddr.c497 struct protoent *p;
502 struct protoent result_buf;
518 struct protoent result_buf;
526 struct protoent result_buf;
/freebsd-11-stable/sbin/ipfw/
H A Dnat.c572 struct protoent *protoent; local
584 protoent = getprotobyname(**av);
585 if (protoent == NULL)
588 r->proto = protoent->p_proto;
642 struct protoent *p;
/freebsd-11-stable/usr.sbin/ppp/
H A Dfilter.c136 ParseUdpOrTcp(int argc, char const *const *argv, const struct protoent *pe,
248 struct protoent *pe;
455 struct protoent *pe;

Completed in 259 milliseconds

123