Searched refs:RTN_LOCAL (Results 1 – 25 of 34) sorted by relevance
12
/external/strace/xlat/ |
D | routing_types.h | 20 #if defined(RTN_LOCAL) || (defined(HAVE_DECL_RTN_LOCAL) && HAVE_DECL_RTN_LOCAL) 22 static_assert((RTN_LOCAL) == (2), "RTN_LOCAL != 2"); 25 # define RTN_LOCAL 2 98 XLAT(RTN_LOCAL),
|
D | routing_types.in | 3 RTN_LOCAL 2
|
/external/iproute2/ip/ |
D | rtm_map.c | 32 case RTN_LOCAL: in rtnl_rtntype_n2a() 65 res = RTN_LOCAL; in rtnl_rtntype_a2n()
|
D | iproute.c | 170 if (r->rtm_type != RTN_LOCAL) in filter_nlmsg() 173 if (r->rtm_type == RTN_LOCAL) in filter_nlmsg() 1274 if (req.r.rtm_type == RTN_LOCAL || in iproute_modify() 1284 else if (req.r.rtm_type == RTN_LOCAL || in iproute_modify() 1447 filter.typemask = ~(1 << RTN_LOCAL | 1<<RTN_BROADCAST); in iproute_list_flush_or_save()
|
/external/libnl/lib/route/ |
D | rtnl.c | 63 __ADD(RTN_LOCAL,local)
|
/external/strace/tests-mx32/ |
D | nlattr_rtmsg.c | 57 .rtm_type = RTN_LOCAL, in init_rtmsg()
|
D | netlink_route.c | 258 .rtm_type = RTN_LOCAL, in test_rtnl_route()
|
/external/strace/tests-m32/ |
D | nlattr_rtmsg.c | 57 .rtm_type = RTN_LOCAL, in init_rtmsg()
|
D | netlink_route.c | 258 .rtm_type = RTN_LOCAL, in test_rtnl_route()
|
/external/strace/tests/ |
D | nlattr_rtmsg.c | 57 .rtm_type = RTN_LOCAL, in init_rtmsg()
|
D | netlink_route.c | 258 .rtm_type = RTN_LOCAL, in test_rtnl_route()
|
/external/syzkaller/sys/linux/ |
D | socket_netlink_route_amd64.const | 350 RTN_LOCAL = 2
|
D | socket_netlink_route_arm.const | 350 RTN_LOCAL = 2
|
D | socket_netlink_route_386.const | 350 RTN_LOCAL = 2
|
D | socket_netlink_route_ppc64le.const | 350 RTN_LOCAL = 2
|
D | socket_netlink_route_arm64.const | 350 RTN_LOCAL = 2
|
/external/libnl/include/linux-private/linux/ |
D | rtnetlink.h | 182 RTN_LOCAL, /* Accept locally */ enumerator
|
/external/syzkaller/vendor/golang.org/x/sys/unix/ |
D | ztypes_linux_sparc64.go | 461 RTN_LOCAL = 0x2 const
|
D | ztypes_linux_s390x.go | 510 RTN_LOCAL = 0x2 const
|
D | ztypes_linux_386.go | 506 RTN_LOCAL = 0x2 const
|
D | ztypes_linux_mips.go | 507 RTN_LOCAL = 0x2 const
|
D | ztypes_linux_amd64.go | 510 RTN_LOCAL = 0x2 const
|
/external/iproute2/include/uapi/linux/ |
D | rtnetlink.h | 212 RTN_LOCAL, /* Accept locally */ enumerator
|
/external/kernel-headers/original/uapi/linux/ |
D | rtnetlink.h | 219 RTN_LOCAL, /* Accept locally */ enumerator
|
/external/toybox/toys/pending/ |
D | ip.c | 92 {"unicast", RTN_UNICAST}, {"local", RTN_LOCAL}, 1481 if (gfilter.tb == RT_TABLE_LOCAL && msg->rtm_type != RTN_LOCAL) in display_route_info() 1483 else if (gfilter.tb == RT_TABLE_MAIN && msg->rtm_type == RTN_LOCAL) in display_route_info() 2004 if (req.msg.rtm_type == RTN_LOCAL || req.msg.rtm_type == RTN_NAT) in route_update()
|
12