Home
last modified time | relevance | path

Searched refs:NETLINK_DNRTMSG (Results 1 – 13 of 13) 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/libnl/include/linux-private/linux/
Dnetlink.h21 #define NETLINK_DNRTMSG 14 /* DECnet routing messages */ macro
/external/iproute2/include/uapi/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.c618 __ADD(NETLINK_DNRTMSG,dnrtmsg)
/external/python/cpython2/Modules/
Dsocketmodule.c4757 #ifdef NETLINK_DNRTMSG
4758 PyModule_AddIntConstant(m, "NETLINK_DNRTMSG", NETLINK_DNRTMSG);
/external/rust/crates/libc/src/unix/linux_like/android/
Dmod.rs1289 pub const NETLINK_DNRTMSG: ::c_int = 14; constant
/external/python/cpython3/Modules/
Dsocketmodule.c7217 #ifdef NETLINK_DNRTMSG
7218 PyModule_AddIntMacro(m, NETLINK_DNRTMSG);
/external/rust/crates/libc/src/unix/linux_like/linux/
Dmod.rs2037 pub const NETLINK_DNRTMSG: ::c_int = 14; constant
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst4298 Make NETLINK_DNRTMSG conditional.