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

1 2 3 4 5 6 7 8 91011>>

  /src/distrib/syspkg/sets/base/base-locale-he/
Makefile 3 PKGBASE=base-locale-he
  /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...]
hash.h 110 HashEntry_Get(HashEntry *he)
112 return he->value;
116 HashEntry_Set(HashEntry *he, void *datum)
118 he->value = datum;
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
hostent_find_fqdn.c 41 * Try to find a fqdn (with `.') in he if possible, else return h_name
45 hostent_find_fqdn (const struct hostent *he)
47 const char *ret = he->h_name;
51 for (h = (const char **)he->h_aliases; *h != NULL; ++h) {
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...]
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...]
getnameinfo.c 54 struct hostent *he = gethostbyaddr (addr, local
57 if (he != NULL) {
58 strlcpy (host, hostent_find_fqdn(he), hostlen);
  /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...]
gethostent.c 261 struct hostent he, *he1 = NULL, *he2 = NULL, *he3; local
300 DE_CONST(name, he.h_name);
301 he.h_addr_list = addr_list;
302 he.h_addr_list[0] = (v4 == 1) ? (char *)&in4 : (char *)&in6;
303 he.h_addr_list[1] = NULL;
304 he.h_aliases = aliases;
305 he.h_aliases[0] = NULL;
306 he.h_length = (v4 == 1) ? INADDRSZ : IN6ADDRSZ;
307 he.h_addrtype = (v4 == 1) ? AF_INET : AF_INET6;
308 return (copyandmerge(&he, NULL, af, error_num))
796 struct hostent *he = NULL; local
    [all...]
  /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/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/external/bsd/atf/dist/tools/
parser.cpp 240 read(impl::parser< header::tokenizer >& p, impl::header_entry& he)
246 he = impl::header_entry();
274 he = impl::header_entry(hdr_name, hdr_value, attrs);
281 write(std::ostream& os, const impl::header_entry& he)
283 std::string line = he.name() + ": " + he.value();
284 impl::attrs_map as = he.attrs();
325 header_entry he; local
326 if (!header::read(p, he).good() || he.name().empty()
372 const header_entry& he = (*iter).second; local
    [all...]
  /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/distrib/utils/libhack/
gethost.c 100 int *he)
106 info.he = he;
119 char *buf, size_t bufsiz, int *he)
125 info.he = he;
137 gethostent_r(FILE *hf, struct hostent *hent, char *buf, size_t buflen, int *he)
147 *he = NETDB_INTERNAL;
153 *he = HOST_NOT_FOUND;
226 *he = NETDB_SUCCESS
    [all...]
  /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/sys/dev/ic/
i128.c 83 int xd, int yd, int wi, int he, int rop)
94 ys += he - 1;
95 yd += he - 1;
102 bus_space_write_4(tag, regh, XY2_WH, (wi << 16) | he);
109 int wi, int he, uint32_t color)
117 bus_space_write_4(tag, regh, XY2_WH, (wi << 16) | he);
  /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/lib/libc/net/
sethostent.c 147 *info->he = HOST_NOT_FOUND;
169 *info->he = NETDB_INTERNAL;
175 *info->he = NETDB_INTERNAL;
189 info->he);
226 *info->he = HOST_NOT_FOUND;
256 *info->he = NETDB_INTERNAL;
280 *info->he = NETDB_INTERNAL;
284 info->he)) != NULL)
290 *info->he = HOST_NOT_FOUND;
gethnamaddr.c 215 res_state res, struct hostent *hent, char *buf, size_t buflen, int *he)
248 *he = NO_RECOVERY;
493 *he = NO_RECOVERY;
513 *he = NETDB_SUCCESS;
518 *he = NETDB_INTERNAL;
524 int *he)
529 *he = NETDB_INTERNAL;
537 res, hp, buf, buflen, he);
543 hp = gethostbyname_internal(name, AF_INET, res, hp, buf, buflen, he);
550 size_t buflen, int *he)
    [all...]
  /src/sys/arch/hpcmips/tx/
tx39icu.c 438 struct txintr_high_entry *he; local
462 TAILQ_FOREACH(he, &sc->sc_he_head[i], he_link) {
463 set = he->he_set;
464 he_mask = he->he_mask;
478 (*he->he_fun)(he->he_arg);
503 struct txintr_high_entry *he; local
510 he = kmem_zalloc(sizeof(*he), KM_SLEEP);
511 he->he_set = set
528 struct txintr_high_entry *he; local
    [all...]
  /src/external/gpl2/gettext/dist/gettext-runtime/src/
gettext.sh.in 73 --help | --hel | --he | --h )
  /src/external/gpl3/binutils/dist/
move-if-change 51 --help | --hel | --he | --h)
  /src/external/gpl3/binutils.old/dist/
move-if-change 51 --help | --hel | --he | --h)
  /src/external/gpl3/gcc/dist/
move-if-change 51 --help | --hel | --he | --h)
  /src/external/gpl3/gcc.old/dist/
move-if-change 51 --help | --hel | --he | --h)

Completed in 60 milliseconds

1 2 3 4 5 6 7 8 91011>>