Lines Matching refs:rpmsg_endpoint

24 struct rpmsg_endpoint;
59 struct rpmsg_endpoint *ept;
91 struct rpmsg_endpoint { struct
175 void rpmsg_destroy_ept(struct rpmsg_endpoint *);
176 struct rpmsg_endpoint *rpmsg_create_ept(struct rpmsg_device *,
180 int rpmsg_send(struct rpmsg_endpoint *ept, void *data, int len);
181 int rpmsg_sendto(struct rpmsg_endpoint *ept, void *data, int len, u32 dst);
182 int rpmsg_send_offchannel(struct rpmsg_endpoint *ept, u32 src, u32 dst,
185 int rpmsg_trysend(struct rpmsg_endpoint *ept, void *data, int len);
186 int rpmsg_trysendto(struct rpmsg_endpoint *ept, void *data, int len, u32 dst);
187 int rpmsg_trysend_offchannel(struct rpmsg_endpoint *ept, u32 src, u32 dst,
190 __poll_t rpmsg_poll(struct rpmsg_endpoint *ept, struct file *filp,
193 ssize_t rpmsg_get_mtu(struct rpmsg_endpoint *ept);
232 static inline void rpmsg_destroy_ept(struct rpmsg_endpoint *ept) in rpmsg_destroy_ept()
238 static inline struct rpmsg_endpoint *rpmsg_create_ept(struct rpmsg_device *rpdev, in rpmsg_create_ept()
249 static inline int rpmsg_send(struct rpmsg_endpoint *ept, void *data, int len) in rpmsg_send()
257 static inline int rpmsg_sendto(struct rpmsg_endpoint *ept, void *data, int len, in rpmsg_sendto()
267 static inline int rpmsg_send_offchannel(struct rpmsg_endpoint *ept, u32 src, in rpmsg_send_offchannel()
276 static inline int rpmsg_trysend(struct rpmsg_endpoint *ept, void *data, int len) in rpmsg_trysend()
284 static inline int rpmsg_trysendto(struct rpmsg_endpoint *ept, void *data, in rpmsg_trysendto()
293 static inline int rpmsg_trysend_offchannel(struct rpmsg_endpoint *ept, u32 src, in rpmsg_trysend_offchannel()
302 static inline __poll_t rpmsg_poll(struct rpmsg_endpoint *ept, in rpmsg_poll()
311 static inline ssize_t rpmsg_get_mtu(struct rpmsg_endpoint *ept) in rpmsg_get_mtu()