HomeSort by: relevance | last modified time | path
    Searched defs:protoent (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.bin/getaddrinfo/
support.c 77 struct protoent *protoent; local
82 protoent = getprotobyname(string);
83 if (protoent == NULL)
86 *protop = protoent->p_proto;
getaddrinfo.c 175 struct protoent *protoent; local
199 protoent = getprotobynumber(ai->ai_protocol);
200 if (protoent == NULL)
203 n = printf(" %s", protoent->p_name);
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
getaddrinfo.c 57 struct protoent *protoent = getprotobynumber (hints->ai_protocol); local
59 if (protoent == NULL)
62 proto_str = protoent->p_name;
63 *protocol = protoent->p_proto;
  /src/include/
netdb.h 181 struct protoent { struct
330 struct protoent *getprotobyname(const char *);
331 struct protoent *getprotobynumber(int);
332 struct protoent *getprotoent(void);
  /src/external/bsd/libbind/dist/include/
netdb.h 168 struct protoent { struct
396 struct protoent *getprotobyname __P((const char *));
397 struct protoent *getprotobynumber __P((int));
398 struct protoent *getprotoent __P((void));
463 struct protoent *, struct protoent_data *));
465 struct protoent *, struct protoent_data *));
466 int getprotoent_r __P((struct protoent *, struct protoent_data *));
531 int getprotobyname_r __P((const char *, struct protoent *, char *,
532 size_t, struct protoent **));
533 int getprotobynumber_r __P((int, struct protoent *, char *, size_t
    [all...]

Completed in 40 milliseconds