Lines Matching defs:attrtype
398 int hdrlen, int attrtype) in nlmsg_find_attr()
766 nla_find_nested(const struct nlattr *nla, int attrtype) in nla_find_nested()
793 static inline int nla_put_u8(struct sk_buff *skb, int attrtype, u8 value) in nla_put_u8()
804 static inline int nla_put_u16(struct sk_buff *skb, int attrtype, u16 value) in nla_put_u16()
815 static inline int nla_put_u32(struct sk_buff *skb, int attrtype, u32 value) in nla_put_u32()
826 static inline int nla_put_u64(struct sk_buff *skb, int attrtype, u64 value) in nla_put_u64()
837 static inline int nla_put_string(struct sk_buff *skb, int attrtype, in nla_put_string()
848 static inline int nla_put_flag(struct sk_buff *skb, int attrtype) in nla_put_flag()
859 static inline int nla_put_msecs(struct sk_buff *skb, int attrtype, in nla_put_msecs()
866 #define NLA_PUT(skb, attrtype, attrlen, data) \ argument
872 #define NLA_PUT_TYPE(skb, type, attrtype, value) \ argument
878 #define NLA_PUT_U8(skb, attrtype, value) \ argument
881 #define NLA_PUT_U16(skb, attrtype, value) \ argument
884 #define NLA_PUT_LE16(skb, attrtype, value) \ argument
887 #define NLA_PUT_BE16(skb, attrtype, value) \ argument
890 #define NLA_PUT_NET16(skb, attrtype, value) \ argument
893 #define NLA_PUT_U32(skb, attrtype, value) \ argument
896 #define NLA_PUT_BE32(skb, attrtype, value) \ argument
899 #define NLA_PUT_NET32(skb, attrtype, value) \ argument
902 #define NLA_PUT_U64(skb, attrtype, value) \ argument
905 #define NLA_PUT_BE64(skb, attrtype, value) \ argument
908 #define NLA_PUT_NET64(skb, attrtype, value) \ argument
911 #define NLA_PUT_STRING(skb, attrtype, value) \ argument
914 #define NLA_PUT_FLAG(skb, attrtype) \ argument
917 #define NLA_PUT_MSECS(skb, attrtype, jiffies) \ argument
1029 static inline struct nlattr *nla_nest_start(struct sk_buff *skb, int attrtype) in nla_nest_start()