Lines Matching defs:size
79 * @size: size of the message to send (in bytes), including the header.
107 const void *msg, size_t size,
116 msg_size = nla_total_size(size)
143 result = nla_put(skb, WIMAX_GNL_MSG_DATA, size, msg);
145 dev_err(dev, "no memory to add payload (msg %p size %zu) in "
146 "attribute: %d\n", msg, size, result);
162 * wimax_msg_data_len - Return a pointer and size of a message's payload
165 * @size: Pointer to where to store the message's size
169 const void *wimax_msg_data_len(struct sk_buff *msg, size_t *size)
180 *size = nla_len(nla);
262 size_t size = skb->len;
265 d_printf(1, dev, "CTX: wimax msg, %zu bytes\n", size);
266 d_dump(2, dev, msg, size);
280 * @size: size of the buffer pointed to by @buf (in bytes).
295 const void *buf, size_t size, gfp_t gfp_flags)
300 skb = wimax_msg_alloc(wimax_dev, pipe_name, buf, size, gfp_flags);