Searched defs:he (Results 1 - 12 of 12) sorted by relevance

/external/chromium/third_party/libevent/test/
H A Dregress_http.c114 struct hostent *he; local
125 if (!(he = gethostbyname(address))) {
128 memcpy(&sin.sin_addr, he->h_addr_list[0], he->h_length);
/external/icu4c/tools/toolutil/
H A Dxmlparser.cpp653 const UHashElement *he=fNames.find(s); local
654 if(he!=NULL) {
656 return (const UnicodeString *)he->key.pointer;
660 he=fNames.find(s);
661 return (const UnicodeString *)he->key.pointer;
667 const UHashElement *he=fNames.find(s); local
668 if(he!=NULL) {
670 return (const UnicodeString *)he->key.pointer;
/external/openssl/apps/
H A Ds_socket.c520 struct hostent *he; local
524 he=GetHostByName(str);
525 if (he == NULL)
531 if ((short)he->h_addrtype != AF_INET)
536 ip[0]=he->h_addr_list[0][0];
537 ip[1]=he->h_addr_list[0][1];
538 ip[2]=he->h_addr_list[0][2];
539 ip[3]=he->h_addr_list[0][3];
/external/openssl/crypto/bio/
H A Db_sock.c125 struct hostent *he; local
146 he=BIO_gethostbyname(str);
147 if (he == NULL)
154 if ((short)he->h_addrtype != AF_INET)
160 ip[i]=he->h_addr_list[0][i];
/external/qemu/slirp/
H A Dmisc.c75 struct hostent *he = NULL; local
78 he = gethostbyname(buff);
79 if (he)
80 our_addr = *(struct in_addr *)he->h_addr;
/external/icu4c/test/cintltst/
H A Dcrestst.c114 UResourceBundle *he = NULL; local
119 he = ures_open(NULL, "he", &status);
125 result = ures_getStringByKey(he, "ExemplarCharacters", &resultLen, &status);
129 ures_close(he);
H A Dcreststn.c340 UResourceBundle *he = NULL; local
349 he = ures_open(NULL, "he", &status);
355 result = ures_getStringByKey(he, "ExemplarCharacters", &resultLen, &status);
359 ures_close(he);
2424 t2 = ures_open(NULL, "he", &status);
2434 t2 = ures_open(NULL, "he", &status);
/external/bluetooth/bluez/test/
H A Dhciemu.c248 hci_event_hdr *he; local
254 he = (void *) ptr; ptr += HCI_EVENT_HDR_SIZE;
256 he->evt = EVT_CMD_STATUS;
257 he->plen = EVT_CMD_STATUS_SIZE;
276 hci_event_hdr *he; local
282 he = (void *) ptr; ptr += HCI_EVENT_HDR_SIZE;
284 he->evt = EVT_CMD_COMPLETE;
285 he->plen = EVT_CMD_COMPLETE_SIZE + plen;
308 hci_event_hdr *he; local
314 he
336 hci_event_hdr *he; local
366 hci_event_hdr *he; local
396 hci_event_hdr *he; local
[all...]
/external/chromium/third_party/libevent/
H A Dhttp.c156 struct hostent *he = NULL; local
159 he = gethostbyname(hostname);
160 if (!he)
163 ai->ai_family = he ? he->h_addrtype : AF_INET;
171 if (he) {
172 sa->sin_family = he->h_addrtype;
173 memcpy(&sa->sin_addr, he->h_addr_list[0], he->h_length);
/external/icu4c/i18n/
H A Drbt_pars.cpp1104 const UHashElement* he = variableNames.nextElement(pos); local
1105 while (he != NULL) {
1106 UnicodeString* tempus = (UnicodeString*)(((UnicodeString*)(he->value.pointer))->clone());
1111 data->variableNames.put(*((UnicodeString*)(he->key.pointer)),
1113 he = variableNames.nextElement(pos);
/external/iproute2/misc/
H A Dss.c923 static int remember_he(struct aafilter *a, struct hostent *he) argument
925 char **ptr = he->h_addr_list;
929 if (he->h_addrtype == AF_INET)
931 else if (he->h_addrtype == AF_INET6)
948 b->addr.family = he->h_addrtype;
959 struct hostent *he; local
966 he = gethostbyname2(addr, fam == AF_UNSPEC ? AF_INET : fam);
967 if (he)
968 cnt = remember_he(a, he);
970 he
[all...]
/external/qemu/
H A Dnet.c257 struct hostent *he; local
272 if ((he = gethostbyname(buf)) == NULL)
274 saddr->sin_addr = *(struct in_addr *)he->h_addr;

Completed in 235 milliseconds