Lines Matching refs:rpmsg_endpoint

141 static void virtio_rpmsg_destroy_ept(struct rpmsg_endpoint *ept);
142 static int virtio_rpmsg_send(struct rpmsg_endpoint *ept, void *data, int len);
143 static int virtio_rpmsg_sendto(struct rpmsg_endpoint *ept, void *data, int len,
145 static int virtio_rpmsg_send_offchannel(struct rpmsg_endpoint *ept, u32 src,
147 static int virtio_rpmsg_trysend(struct rpmsg_endpoint *ept, void *data, int len);
148 static int virtio_rpmsg_trysendto(struct rpmsg_endpoint *ept, void *data,
150 static int virtio_rpmsg_trysend_offchannel(struct rpmsg_endpoint *ept, u32 src,
198 struct rpmsg_endpoint *ept = container_of(kref, struct rpmsg_endpoint, in __ept_release()
208 static struct rpmsg_endpoint *__rpmsg_create_ept(struct virtproc_info *vrp, in __rpmsg_create_ept()
214 struct rpmsg_endpoint *ept; in __rpmsg_create_ept()
276 static struct rpmsg_endpoint *virtio_rpmsg_create_ept(struct rpmsg_device *rpdev, in virtio_rpmsg_create_ept()
297 __rpmsg_destroy_ept(struct virtproc_info *vrp, struct rpmsg_endpoint *ept) in __rpmsg_destroy_ept()
312 static void virtio_rpmsg_destroy_ept(struct rpmsg_endpoint *ept) in virtio_rpmsg_destroy_ept()
649 static int virtio_rpmsg_send(struct rpmsg_endpoint *ept, void *data, int len) in virtio_rpmsg_send()
657 static int virtio_rpmsg_sendto(struct rpmsg_endpoint *ept, void *data, int len, in virtio_rpmsg_sendto()
666 static int virtio_rpmsg_send_offchannel(struct rpmsg_endpoint *ept, u32 src, in virtio_rpmsg_send_offchannel()
674 static int virtio_rpmsg_trysend(struct rpmsg_endpoint *ept, void *data, int len) in virtio_rpmsg_trysend()
682 static int virtio_rpmsg_trysendto(struct rpmsg_endpoint *ept, void *data, in virtio_rpmsg_trysendto()
691 static int virtio_rpmsg_trysend_offchannel(struct rpmsg_endpoint *ept, u32 src, in virtio_rpmsg_trysend_offchannel()
702 struct rpmsg_endpoint *ept; in rpmsg_recv_single()