/external/strace/xlat/ |
rtnl_addr_attrs.h | 8 #if !(defined(IFA_LOCAL) || (defined(HAVE_DECL_IFA_LOCAL) && HAVE_DECL_IFA_LOCAL)) 9 # define IFA_LOCAL 2 40 XLAT(IFA_LOCAL),
|
/bionic/libc/kernel/uapi/linux/ |
if_addr.h | 33 IFA_LOCAL,
|
/external/iproute2/include/uapi/linux/ |
if_addr.h | 21 * local address is supplied in IFA_LOCAL attribute. 29 IFA_LOCAL,
|
/external/kernel-headers/original/uapi/linux/ |
if_addr.h | 21 * local address is supplied in IFA_LOCAL attribute. 29 IFA_LOCAL,
|
/external/libnl/include/linux-private/linux/ |
if_addr.h | 20 * local address is supplied in IFA_LOCAL attribute. 28 IFA_LOCAL,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
if_addr.h | 20 * local address is supplied in IFA_LOCAL attribute. 25 IFA_LOCAL,
|
/external/iputils/ninfod/ |
ni_ifaddrs.c | 89 //#define IFA_LOCAL IFA_LOCAL 101 #ifndef IFA_LOCAL 356 #ifndef IFA_LOCAL 395 #ifndef IFA_LOCAL 445 #ifndef IFA_LOCAL 450 case IFA_LOCAL: 463 case IFA_LOCAL: 485 #ifndef IFA_LOCAL
|
/device/google/cuttlefish_common/common/libs/net/ |
network_interface_manager.cpp | 48 request.AddInt32(IFA_LOCAL, address);
|
/external/strace/ |
rtnl_addr.c | 97 [IFA_LOCAL] = decode_ifa_address,
|
/external/android-clat/ |
getaddr.c | 70 case IFA_LOCAL:
|
setif.c | 66 if(nla_put(msg, IFA_LOCAL, addr_size, address) < 0) { 71 // AF_INET6 gets IFA_LOCAL + IFA_ADDRESS 77 // AF_INET gets IFA_LOCAL + IFA_BROADCAST
|
/external/iproute2/ip/ |
ipaddress.c | [all...] |
/external/ipsec-tools/src/racoon/ |
grabmyaddr.c | 184 if (rta_tb[IFA_LOCAL] == NULL) 185 rta_tb[IFA_LOCAL] = rta_tb[IFA_ADDRESS]; 186 if (rta_tb[IFA_LOCAL] == NULL) 199 memcpy(&sin->sin_addr, RTA_DATA(rta_tb[IFA_LOCAL]), 4); 202 memcpy(&sin->sin6_addr, RTA_DATA(rta_tb[IFA_LOCAL]), 16);
|
/bionic/libc/bionic/ |
ifaddrs.cpp | 71 // The kernel currently uses the order IFA_ADDRESS, IFA_LOCAL, IFA_BROADCAST 74 // This is an IFA_ADDRESS and haven't seen an IFA_LOCAL yet, so assume this is the 75 // local address. SetLocalAddress will fix things if we later see an IFA_LOCAL. 78 // We already saw an IFA_LOCAL, which implies this is a destination address. 95 // local address is supplied in IFA_LOCAL attribute". 102 // ...and then put this IFA_LOCAL into ifa_addr. 226 } else if (rta->rta_type == IFA_LOCAL) {
|
/external/dnsmasq/src/ |
netlink.c | 202 if (rta->rta_type == IFA_LOCAL)
|
/external/libnl/lib/route/ |
addr.c | 244 if (tb[IFA_LOCAL]) { 245 addr->a_local = nl_addr_alloc_attr(tb[IFA_LOCAL], family); 260 * no IFA_LOCAL, IPv4 sends both IFA_LOCAL and IFA_ADDRESS 262 if (!tb[IFA_LOCAL] || !nl_addr_cmp(a, addr->a_local)) { 579 NLA_PUT_ADDR(msg, IFA_LOCAL, tmpl->a_local);
|
/prebuilts/go/darwin-x86/src/syscall/ |
types_linux.go | 254 IFA_LOCAL = C.IFA_LOCAL
|
ztypes_linux_arm64.go | 335 IFA_LOCAL = 0x2
|
ztypes_linux_mips.go | 331 IFA_LOCAL = 0x2
|
ztypes_linux_mips64.go | 333 IFA_LOCAL = 0x2
|
ztypes_linux_mips64le.go | 333 IFA_LOCAL = 0x2
|
/prebuilts/go/linux-x86/src/syscall/ |
types_linux.go | 254 IFA_LOCAL = C.IFA_LOCAL
|
/external/toybox/toys/pending/ |
ip.c | 965 if (!rta_tb[IFA_LOCAL]) rta_tb[IFA_LOCAL] = rta_tb[IFA_ADDRESS]; 966 if (!rta_tb[IFA_ADDRESS]) rta_tb[IFA_ADDRESS] = rta_tb[IFA_LOCAL]; 1000 if (rta_tb[IFA_LOCAL]) { 1001 if (!inet_ntop(ifa->ifa_family, RTA_DATA(rta_tb[IFA_LOCAL]), 1006 RTA_DATA(rta_tb[IFA_LOCAL]), 4)) [all...] |
/kernel/tests/net/test/ |
iproute.py | 105 IFA_LOCAL = 2 315 elif name in ["IFA_ADDRESS", "IFA_LOCAL", "RTA_DST", "RTA_SRC", 485 ifaddrmsg += self._NlAttrIPAddress(IFA_LOCAL, family, addr)
|
/prebuilts/go/darwin-x86/src/net/ |
interface_linux.go | 181 if a.Attr.Type == syscall.IFA_LOCAL {
|