HomeSort by: relevance | last modified time | path
    Searched defs:he (Results 1 - 25 of 85) sorted by relevancy

1 2 3 4

  /src/lib/libc/net/
hostent.h 61 int *he; member in struct:getnamaddr
getnameinfo.c 395 int he; local
397 hbuf, sizeof(hbuf), &he);
417 switch (he) {
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
getnameinfo.c 54 struct hostent *he = gethostbyaddr (addr, local
57 if (he != NULL) {
58 strlcpy (host, hostent_find_fqdn(he), hostlen);
getaddrinfo.c 230 struct hostent *he, int *flags)
240 tmp_canon = hostent_find_fqdn (he);
244 he2 = getipnodebyaddr (he->h_addr_list[0], he->h_length,
245 he->h_addrtype, &error);
261 for (h = he->h_addr_list; *h != NULL; ++h) {
334 struct hostent *he; local
336 he = getipnodebyname (nodename, PF_INET6, 0, &error);
338 if (he != NULL) {
340 &current, const_v6, he, &flags)
346 struct hostent *he; local
    [all...]
roken_gethostby.c 52 struct hostent *he = gethostbyname(address); local
53 if(he) {
54 unsigned char *p = (unsigned char*)he->h_addr;
193 static struct hostent he; local
198 he.h_name = p;
199 he.h_aliases = NULL;
200 he.h_addrtype = AF_INET;
201 he.h_length = 4;
214 he.h_addr_list = addr_list;
215 return &he;
222 struct hostent *he; local
234 struct hostent *he; local
    [all...]
  /src/usr.bin/btpin/
btpin.c 72 struct hostent *he = NULL; local
74 if ((he = bt_gethostbyname(optarg)) == NULL)
78 bdaddr_copy(&rp.raddr, (bdaddr_t *)he->h_addr);
  /src/usr.bin/sdpquery/
sdpquery.c 89 struct hostent *he = NULL; local
91 if ((he = bt_gethostbyname(optarg)) == NULL)
95 bdaddr_copy(&remote_addr, (bdaddr_t *)he->h_addr);
  /src/external/gpl2/xcvs/dist/lib/
getaddrinfo.c 69 struct hostent *he; local
101 he = gethostbyname (nodename);
102 if (!he || he->h_addr_list[0] == NULL)
105 switch (he->h_addrtype)
127 switch (he->h_addrtype)
137 if (he->h_length != sizeof (sinp->sin6_addr))
140 memcpy (&sinp->sin6_addr, he->h_addr_list[0], he->h_length);
156 if (he->h_length != sizeof (sinp->sin_addr)
    [all...]
  /src/external/bsd/libbind/dist/irs/
gethostent_r.c 44 struct hostent *he = gethostbyname(name); local
54 if (he == NULL || (n = copy_hostent(he, hptr, HOST_R_COPY)) != 0)
61 if (he == NULL)
64 return (copy_hostent(he, hptr, HOST_R_COPY));
71 struct hostent *he = gethostbyaddr(addr, len, type); local
81 if (he == NULL || (n = copy_hostent(he, hptr, HOST_R_COPY)) != 0)
88 if (he == NULL)
91 return (copy_hostent(he, hptr, HOST_R_COPY))
103 struct hostent *he = gethostent(); local
    [all...]
  /src/usr.bin/btkey/
btkey.c 55 struct hostent *he; local
68 he = bt_gethostbyname(optarg);
69 if (he == NULL)
73 bdaddr_copy(&raddr, (bdaddr_t *)he->h_addr);
88 he = bt_gethostbyname(optarg);
89 if (he == NULL)
93 bdaddr_copy(&laddr, (bdaddr_t *)he->h_addr);
291 struct hostent *he; local
297 else if ((he = bt_gethostbyaddr((const char *)addr,
299 printf(" (%s)", he->h_name)
    [all...]
  /src/usr.sbin/btdevctl/
btdevctl.c 88 struct hostent *he = NULL; local
90 if ((he = bt_gethostbyname(optarg)) == NULL)
94 bdaddr_copy(&raddr, (bdaddr_t *)he->h_addr);
  /src/regress/sys/net/frag/
ip4_frag_1.c 303 struct hostent *he; local
312 he = gethostbyname(argv[1]);
313 if (he == NULL) {
316 memcpy(&target, he->h_addr, sizeof(target));
  /src/usr.bin/make/
hash.c 116 HashEntry *he; local
124 for (he = t->buckets[h & t->bucketsMask]; he != NULL; he = he->next) {
125 if (he->hash == h &&
126 strncmp(he->key, key.start, keyLen) == 0 &&
127 he->key[keyLen] == '\0')
131 return he;
160 HashEntry *he = buckets[i] local
187 HashEntry *he = HashTable_FindEntry(t, key); local
198 HashEntry *he = HashTable_Find(t, key, h); local
207 const HashEntry *he = t->buckets[b]; local
234 HashEntry *he = oldBuckets[i]; local
261 HashEntry *he = HashTable_Find(t, Substring_Init(key, keyEnd), h); local
289 HashEntry *he = HashTable_CreateEntry(t, key, NULL); local
314 HashEntry *he = hi->entry; local
    [all...]
targ.c 274 HashEntry *he = HashTable_CreateEntry(&allTargetsByName, name, &isNew); local
276 return HashEntry_Get(he);
280 HashEntry_Set(he, gn);
  /src/usr.bin/ypwhich/
ypwhich.c 103 struct hostent *he; local
174 he = gethostbyaddr((void *)&inaddr->s_addr,
176 if (he)
177 (void)printf("%s\n", he->h_name);
229 struct hostent *he; local
231 he = gethostbyname(host);
232 if (he == NULL)
234 (void)memmove(&sin.sin_addr, he->h_addr, sizeof(sin.sin_addr));
276 struct hostent *he; local
294 he = gethostbyname(host)
    [all...]
  /src/usr.sbin/btpand/
btpand.c 96 struct hostent *he; local
98 if ((he = bt_gethostbyname(optarg)) == NULL)
102 bdaddr_copy(&remote_bdaddr, (bdaddr_t *)he->h_addr);
  /src/usr.sbin/rpc.bootparamd/
bootparamd.c 79 struct hostent *he; local
96 he = gethostbyname(optarg);
97 if (he == 0) {
101 memmove(&route_addr.s_addr, he->h_addr, he->h_length);
157 struct hostent *he; local
177 he = gethostbyaddr((char *) &haddr, sizeof(haddr), AF_INET);
178 if (he) {
179 (void)strlcpy(askname, he->h_name, sizeof(askname));
229 struct hostent *he; local
    [all...]
  /src/external/bsd/wpa/dist/src/ap/
neighbor_db.c 207 int ht, int vht, int he)
213 if (!ht && !vht && !he)
217 if ((!vht && !he) || oper_chwidth == CONF_OPER_CHWIDTH_USE_HT)
236 int he = hapd->iconf->ieee80211ax && !hapd->conf->disable_11ax; local
237 bool eht = he && hapd->iconf->ieee80211be && !hapd->conf->disable_11be;
275 if (he)
287 width = hostapd_get_nr_chan_width(hapd, ht, vht, he);
  /src/bin/sh/
input.c 344 HistEvent he; local
347 history(hist, &he, whichprompt != 2 ? H_ENTER : H_APPEND,
350 history(hist, &he, H_NSAVE_FP, (size_t)0, HistFP);
  /src/sys/arch/amiga/dev/
mntva.c 80 int he, uint32_t color);
82 int yd, int wi, int he);
351 mntva_rectfill(struct mntva_softc *sc, int x, int y, int wi, int he,
358 mntva_reg_write(sc, MNTVA_BLITTERY2, (uint16_t) y + he - 1);
368 int he)
373 mntva_reg_write(sc, MNTVA_BLITTERY2, (uint16_t) yd + he - 1);
377 mntva_reg_write(sc, MNTVA_BLITTERY4, (uint16_t) ys + he - 1);
391 int x, ys, yd, wi, he; local
402 he = ri->ri_font->fontheight * nrows;
403 mntva_bitblt(sc, x, ys, x, yd, wi, he);
413 int x, y, wi, he, fg, bg, ul; local
    [all...]
  /src/usr.bin/rfcomm_sppd/
rfcomm_sppd.c 144 struct hostent *he = NULL; local
146 if ((he = bt_gethostbyname(optarg)) == NULL)
150 bdaddr_copy(&raddr, (bdaddr_t *)he->h_addr);
  /src/usr.sbin/crash/
crash.c 70 static HistEvent he; variable
272 history(hist, &he, H_ENTER, el);
479 history(hist, &he, H_SETSIZE, 100);
  /src/usr.sbin/lpr/lpc/
lpc.c 82 HistEvent he; variable
166 history(hist, &he, H_SETSIZE, 100); /* 100 elt history buffer */
179 history(hist, &he, H_ENTER, elline);
  /src/crypto/external/bsd/openssl/dist/crypto/bio/
bio_addr.c 749 const struct hostent *he; local
794 he = &he_fallback;
810 he = gethostbyname(host);
812 if (he == NULL) {
912 for(addrlistp = he->h_addr_list; *addrlistp != NULL;
916 for(addresses = addrlistp - he->h_addr_list;
918 if (!addrinfo_wrap(he->h_addrtype, socktype,
919 *addrlistp, he->h_length,
  /src/crypto/external/bsd/openssl.old/dist/crypto/bio/
b_addr.c 736 const struct hostent *he; local
780 he = &he_fallback;
796 he = gethostbyname(host);
798 if (he == NULL) {
898 for(addrlistp = he->h_addr_list; *addrlistp != NULL;
902 for(addresses = addrlistp - he->h_addr_list;
904 if (!addrinfo_wrap(he->h_addrtype, socktype,
905 *addrlistp, he->h_length,

Completed in 86 milliseconds

1 2 3 4