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

  /bionic/libc/dns/net/
getnameinfo.c 178 char numaddr[512]; local
296 if (inet_ntop(afd->a_af, addr, numaddr, sizeof(numaddr))
299 numaddrlen = strlen(numaddr);
302 strlcpy(host, numaddr, hostlen);
358 char numaddr[512]; local
364 if (inet_ntop(AF_INET6, addr, numaddr, sizeof(numaddr)) == NULL)
367 numaddrlen = strlen(numaddr);
370 strlcpy(host, numaddr, hostlen)
    [all...]
  /external/tcpdump/missing/
getnameinfo.c 118 char numaddr[512]; local
216 if (inet_ntop(afd->a_af, addr, numaddr, sizeof(numaddr))
219 if (strlen(numaddr) + 1 > hostlen)
221 strcpy(host, numaddr);
272 if (inet_ntop(afd->a_af, addr, numaddr, sizeof(numaddr))
275 if (strlen(numaddr) + 1 > hostlen)
277 strcpy(host, numaddr);

Completed in 49 milliseconds