HomeSort by relevance Sort by last modified time
    Searched defs:numaddr (Results 1 - 6 of 6) sorted by null

  /bionic/libc/dns/net/
getnameinfo.c 182 char numaddr[512]; local
302 if (inet_ntop(afd->a_af, addr, numaddr, sizeof(numaddr))
305 numaddrlen = strlen(numaddr);
308 strlcpy(host, numaddr, hostlen);
367 char numaddr[512]; local
373 if (inet_ntop(AF_INET6, addr, numaddr, sizeof(numaddr)) == NULL)
376 numaddrlen = strlen(numaddr);
379 strlcpy(host, numaddr, hostlen)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
getnameinfo.c 118 char numaddr[512]; local
181 if (inet_ntop(gni_afd->a_af, addr, numaddr, sizeof(numaddr))
184 if (strlen(numaddr) > hostlen)
186 strcpy(host, numaddr);
213 if (inet_ntop(gni_afd->a_af, addr, numaddr, sizeof(numaddr))
216 if (strlen(numaddr) > hostlen)
218 strcpy(host, numaddr);
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getnameinfo.c 188 char numaddr[512]; local
313 if (inet_ntop(afd->a_af, addr, numaddr, sizeof(numaddr))
316 numaddrlen = strlen(numaddr);
319 strlcpy(host, numaddr, hostlen);
380 char numaddr[512]; local
386 if (inet_ntop(AF_INET6, addr, numaddr, sizeof(numaddr)) == NULL)
389 numaddrlen = strlen(numaddr);
392 strlcpy(host, numaddr, hostlen);
    [all...]
  /external/curl/lib/
doh.h 86 int numaddr; member in struct:dohentry
  /external/python/cpython2/Modules/
getnameinfo.c 110 char numaddr[512]; local
173 if (inet_ntop(gni_afd->a_af, addr, numaddr, sizeof(numaddr))
176 if (strlen(numaddr) > hostlen)
178 strcpy(host, numaddr);
205 if (inet_ntop(gni_afd->a_af, addr, numaddr, sizeof(numaddr))
208 if (strlen(numaddr) > hostlen)
210 strcpy(host, numaddr);
  /external/python/cpython3/Modules/
getnameinfo.c 110 char numaddr[512]; local
173 if (inet_ntop(gni_afd->a_af, addr, numaddr, sizeof(numaddr))
176 if (strlen(numaddr) > hostlen)
178 strcpy(host, numaddr);
205 if (inet_ntop(gni_afd->a_af, addr, numaddr, sizeof(numaddr))
208 if (strlen(numaddr) > hostlen)
210 strcpy(host, numaddr);

Completed in 632 milliseconds