Lines Matching refs:value
99 * nla_put_u8(skb, type, value) add u8 attribute to skb
100 * nla_put_u16(skb, type, value) add u16 attribute to skb
101 * nla_put_u32(skb, type, value) add u32 attribute to skb
103 * value, padattr) add u64 attribute to skb
104 * nla_put_s8(skb, type, value) add s8 attribute to skb
105 * nla_put_s16(skb, type, value) add s16 attribute to skb
106 * nla_put_s32(skb, type, value) add s32 attribute to skb
107 * nla_put_s64(skb, type, value,
243 * `bitfield32_valid' is the u32 value of valid flags
270 * the value of the integer attribute.
295 * above, then the min/max length (not value like for
334 * starts for any attribute types >= this value, also, strict
346 * the enum used by the policy, and be set to the new value that
1239 * @value: numeric value
1241 static inline int nla_put_u8(struct sk_buff *skb, int attrtype, u8 value)
1244 u8 tmp = value;
1253 * @value: numeric value
1255 static inline int nla_put_u16(struct sk_buff *skb, int attrtype, u16 value)
1257 u16 tmp = value;
1266 * @value: numeric value
1268 static inline int nla_put_be16(struct sk_buff *skb, int attrtype, __be16 value)
1270 __be16 tmp = value;
1279 * @value: numeric value
1281 static inline int nla_put_net16(struct sk_buff *skb, int attrtype, __be16 value)
1283 __be16 tmp = value;
1292 * @value: numeric value
1294 static inline int nla_put_le16(struct sk_buff *skb, int attrtype, __le16 value)
1296 __le16 tmp = value;
1305 * @value: numeric value
1307 static inline int nla_put_u32(struct sk_buff *skb, int attrtype, u32 value)
1309 u32 tmp = value;
1318 * @value: numeric value
1320 static inline int nla_put_be32(struct sk_buff *skb, int attrtype, __be32 value)
1322 __be32 tmp = value;
1331 * @value: numeric value
1333 static inline int nla_put_net32(struct sk_buff *skb, int attrtype, __be32 value)
1335 __be32 tmp = value;
1344 * @value: numeric value
1346 static inline int nla_put_le32(struct sk_buff *skb, int attrtype, __le32 value)
1348 __le32 tmp = value;
1357 * @value: numeric value
1361 u64 value, int padattr)
1363 u64 tmp = value;
1372 * @value: numeric value
1375 static inline int nla_put_be64(struct sk_buff *skb, int attrtype, __be64 value,
1378 __be64 tmp = value;
1387 * @value: numeric value
1390 static inline int nla_put_net64(struct sk_buff *skb, int attrtype, __be64 value,
1393 __be64 tmp = value;
1403 * @value: numeric value
1406 static inline int nla_put_le64(struct sk_buff *skb, int attrtype, __le64 value,
1409 __le64 tmp = value;
1418 * @value: numeric value
1420 static inline int nla_put_s8(struct sk_buff *skb, int attrtype, s8 value)
1422 s8 tmp = value;
1431 * @value: numeric value
1433 static inline int nla_put_s16(struct sk_buff *skb, int attrtype, s16 value)
1435 s16 tmp = value;
1444 * @value: numeric value
1446 static inline int nla_put_s32(struct sk_buff *skb, int attrtype, s32 value)
1448 s32 tmp = value;
1457 * @value: numeric value
1460 static inline int nla_put_s64(struct sk_buff *skb, int attrtype, s64 value,
1463 s64 tmp = value;
1537 * @value: value carrying bits
1541 __u32 value, __u32 selector)
1543 struct nla_bitfield32 tmp = { value, selector, };