Lines Matching refs:data
25 * The provided data structures and external interfaces from this code
185 * @skb: pointer to socket buffer with CAN frame in data section
197 * -EINVAL when the skb->data does not contain a valid CAN frame
210 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
417 * @data: returned parameter for callback function
423 * parameter 'data' on a matching receive filter. A filter matches, when
443 void *data, char *ident, struct sock *sk)
450 /* insert new receiver (dev,canid,mask) -> (func,data) */
471 rcv->data = data;
505 * @data: returned parameter for callback function
512 void *data)
536 rcv->func == func && rcv->data == data)
572 rcv->func(skb, rcv->data);
580 struct can_frame *cf = (struct can_frame *)skb->data;
868 offsetof(struct can_frame, data) !=
869 offsetof(struct canfd_frame, data));