Home
last modified time | relevance | path

Searched refs:NETLINK_DNRTMSG (Results 1 – 14 of 14) sorted by relevance

/external/strace/xlat/
Dnetlink_protocols.h104 #if defined(NETLINK_DNRTMSG) || (defined(HAVE_DECL_NETLINK_DNRTMSG) && HAVE_DECL_NETLINK_DNRTMSG)
106 static_assert((NETLINK_DNRTMSG) == (14), "NETLINK_DNRTMSG != 14");
109 # define NETLINK_DNRTMSG 14
180 XLAT(NETLINK_DNRTMSG),
Dnetlink_protocols.in15 NETLINK_DNRTMSG 14
/external/iproute2/include/uapi/linux/
Dnetlink.h23 #define NETLINK_DNRTMSG 14 /* DECnet routing messages */ macro
/external/libnl/include/linux-private/linux/
Dnetlink.h23 #define NETLINK_DNRTMSG 14 /* DECnet routing messages */ macro
/external/kernel-headers/original/uapi/linux/
Dnetlink.h23 #define NETLINK_DNRTMSG 14 /* DECnet routing messages */ macro
/external/iproute2/lib/
Drt_names.c612 [NETLINK_DNRTMSG] = "dec-rt",
/external/libnl/python/netlink/
Dcore.py66 NETLINK_DNRTMSG = 14 variable
/external/libnl/lib/
Dutils.c649 __ADD(NETLINK_DNRTMSG,dnrtmsg),
/external/rust/crates/nix/src/sys/socket/
Dmod.rs143 NetlinkDECNetRoutingMessage = libc::NETLINK_DNRTMSG,
/external/python/cpython2/Modules/
Dsocketmodule.c4757 #ifdef NETLINK_DNRTMSG
4758 PyModule_AddIntConstant(m, "NETLINK_DNRTMSG", NETLINK_DNRTMSG);
/external/python/cpython3/Modules/
Dsocketmodule.c7301 #ifdef NETLINK_DNRTMSG
7302 PyModule_AddIntMacro(m, NETLINK_DNRTMSG);
/external/rust/crates/libc/src/unix/linux_like/android/
Dmod.rs1434 pub const NETLINK_DNRTMSG: ::c_int = 14; constant
/external/rust/crates/libc/src/unix/linux_like/linux/
Dmod.rs2287 pub const NETLINK_DNRTMSG: ::c_int = 14; constant
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst4298 Make NETLINK_DNRTMSG conditional.