HomeSort by relevance Sort by last modified time
    Searched refs:destip (Results 1 - 3 of 3) sorted by null

  /external/toybox/toys/pending/
netstat.c 534 char *destip = NULL, *gateip = NULL, *maskip = NULL; local
548 destip = xstrdup(toybuf);
550 if (!notresolve) destip = xstrdup("default");
551 else destip = xstrdup("0.0.0.0");
570 xprintf("%-15.15s %-15.15s %-16s%-6s", destip, gateip, maskip, flag_val);
574 if (destip) free(destip);
route.c 120 char *destip = toybuf, *gateip = toybuf+32, *maskip = toybuf+64; //ip string 16 local
124 if (!dest && !(toys.optflags & FLAG_n)) strcpy( destip, "default");
125 else if (!inet_ntop(AF_INET, &dest, destip, 32)) perror_exit("inet");
135 xprintf("%-15.15s %-15.15s %-16s%-6s", destip, gateip, maskip, flag_val);
  /frameworks/base/services/net/java/android/net/ip/
RouterAdvertisementDaemon.java 601 final InetAddress destip = dest.getAddress(); local
602 return (destip instanceof Inet6Address) &&
603 destip.isLinkLocalAddress() &&
604 (((Inet6Address) destip).getScopeId() == mIfIndex);

Completed in 6437 milliseconds