Lines Matching refs:ept

159 	struct rpmsg_endpoint ept;  member
190 #define to_glink_channel(_ept) container_of(_ept, struct glink_channel, ept)
906 if (channel->ept.cb) { in qcom_glink_rx_data()
907 channel->ept.cb(channel->ept.rpdev, in qcom_glink_rx_data()
910 channel->ept.priv, in qcom_glink_rx_data()
1164 struct glink_channel *parent = to_glink_channel(rpdev->ept); in qcom_glink_create_ept()
1167 struct rpmsg_endpoint *ept; in qcom_glink_create_ept() local
1190 ept = &channel->ept; in qcom_glink_create_ept()
1191 ept->rpdev = rpdev; in qcom_glink_create_ept()
1192 ept->cb = cb; in qcom_glink_create_ept()
1193 ept->priv = priv; in qcom_glink_create_ept()
1194 ept->ops = &glink_endpoint_ops; in qcom_glink_create_ept()
1196 return ept; in qcom_glink_create_ept()
1201 struct glink_channel *channel = to_glink_channel(rpdev->ept); in qcom_glink_announce_create()
1237 static void qcom_glink_destroy_ept(struct rpmsg_endpoint *ept) in qcom_glink_destroy_ept() argument
1239 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_destroy_ept()
1244 channel->ept.cb = NULL; in qcom_glink_destroy_ept()
1382 static int qcom_glink_send(struct rpmsg_endpoint *ept, void *data, int len) in qcom_glink_send() argument
1384 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_send()
1389 static int qcom_glink_trysend(struct rpmsg_endpoint *ept, void *data, int len) in qcom_glink_trysend() argument
1391 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_trysend()
1396 static int qcom_glink_sendto(struct rpmsg_endpoint *ept, void *data, int len, u32 dst) in qcom_glink_sendto() argument
1398 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_sendto()
1403 static int qcom_glink_trysendto(struct rpmsg_endpoint *ept, void *data, int len, u32 dst) in qcom_glink_trysendto() argument
1405 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_trysendto()
1500 rpdev->ept = &channel->ept; in qcom_glink_rx_open()
1690 struct glink_channel *channel = to_glink_channel(rpdev->ept); in qcom_glink_device_release()
1713 rpdev->ept = &channel->ept; in qcom_glink_create_chrdev()