/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);
|
getaddrinfo.c | 484 get_name(addr, gai_afd, res, numaddr, pai, port0)
488 char *numaddr;
509 GET_AI(cur, gai_afd, numaddr, port);
|
/external/tcpdump/missing/ |
getnameinfo.c | 113 char numaddr[512]; local 211 if (inet_ntop(afd->a_af, addr, numaddr, sizeof(numaddr)) 214 if (strlen(numaddr) + 1 > hostlen) 216 strcpy(host, numaddr); 267 if (inet_ntop(afd->a_af, addr, numaddr, sizeof(numaddr)) 270 if (strlen(numaddr) + 1 > hostlen) 272 strcpy(host, numaddr);
|
/bionic/libc/dns/net/ |
getnameinfo.c | 175 char numaddr[512]; local 293 if (inet_ntop(afd->a_af, addr, numaddr, sizeof(numaddr)) 296 numaddrlen = strlen(numaddr); 299 strlcpy(host, numaddr, hostlen); 355 char numaddr[512]; local 361 if (inet_ntop(AF_INET6, addr, numaddr, sizeof(numaddr)) == NULL) 364 numaddrlen = strlen(numaddr); 367 strlcpy(host, numaddr, hostlen) [all...] |
/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/libpcap/Win32/Src/ |
getaddrinfo.c | 912 get_name(addr, afd, res, numaddr, pai, servname) 916 char *numaddr; 955 GET_AI(cur, afd, numaddr);
|