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,
246 * `bitfield32_valid' is the u32 value of valid flags
275 * the value of the integer attribute.
301 * above, then the min/max length (not value like for
332 * starts for any attribute types >= this value, also, strict
344 * the enum used by the policy, and be set to the new value that
1285 * @value: numeric value
1287 static inline int nla_put_u8(struct sk_buff *skb, int attrtype, u8 value)
1290 u8 tmp = value;
1299 * @value: numeric value
1301 static inline int nla_put_u16(struct sk_buff *skb, int attrtype, u16 value)
1303 u16 tmp = value;
1312 * @value: numeric value
1314 static inline int nla_put_be16(struct sk_buff *skb, int attrtype, __be16 value)
1316 __be16 tmp = value;
1325 * @value: numeric value
1327 static inline int nla_put_net16(struct sk_buff *skb, int attrtype, __be16 value)
1329 __be16 tmp = value;
1338 * @value: numeric value
1340 static inline int nla_put_le16(struct sk_buff *skb, int attrtype, __le16 value)
1342 __le16 tmp = value;
1351 * @value: numeric value
1353 static inline int nla_put_u32(struct sk_buff *skb, int attrtype, u32 value)
1355 u32 tmp = value;
1364 * @value: numeric value
1366 static inline int nla_put_be32(struct sk_buff *skb, int attrtype, __be32 value)
1368 __be32 tmp = value;
1377 * @value: numeric value
1379 static inline int nla_put_net32(struct sk_buff *skb, int attrtype, __be32 value)
1381 __be32 tmp = value;
1390 * @value: numeric value
1392 static inline int nla_put_le32(struct sk_buff *skb, int attrtype, __le32 value)
1394 __le32 tmp = value;
1403 * @value: numeric value
1407 u64 value, int padattr)
1409 u64 tmp = value;
1418 * @value: numeric value
1421 static inline int nla_put_be64(struct sk_buff *skb, int attrtype, __be64 value,
1424 __be64 tmp = value;
1433 * @value: numeric value
1436 static inline int nla_put_net64(struct sk_buff *skb, int attrtype, __be64 value,
1439 __be64 tmp = value;
1449 * @value: numeric value
1452 static inline int nla_put_le64(struct sk_buff *skb, int attrtype, __le64 value,
1455 __le64 tmp = value;
1464 * @value: numeric value
1466 static inline int nla_put_s8(struct sk_buff *skb, int attrtype, s8 value)
1468 s8 tmp = value;
1477 * @value: numeric value
1479 static inline int nla_put_s16(struct sk_buff *skb, int attrtype, s16 value)
1481 s16 tmp = value;
1490 * @value: numeric value
1492 static inline int nla_put_s32(struct sk_buff *skb, int attrtype, s32 value)
1494 s32 tmp = value;
1503 * @value: numeric value
1506 static inline int nla_put_s64(struct sk_buff *skb, int attrtype, s64 value,
1509 s64 tmp = value;
1583 * @value: value carrying bits
1587 __u32 value, __u32 selector)
1589 struct nla_bitfield32 tmp = { value, selector, };