Lines Matching refs:ept

155 	struct rpmsg_endpoint ept;  member
186 #define to_glink_channel(_ept) container_of(_ept, struct glink_channel, ept)
878 if (channel->ept.cb) { in qcom_glink_rx_data()
879 channel->ept.cb(channel->ept.rpdev, in qcom_glink_rx_data()
882 channel->ept.priv, in qcom_glink_rx_data()
1133 struct glink_channel *parent = to_glink_channel(rpdev->ept); in qcom_glink_create_ept()
1136 struct rpmsg_endpoint *ept; in qcom_glink_create_ept() local
1159 ept = &channel->ept; in qcom_glink_create_ept()
1160 ept->rpdev = rpdev; in qcom_glink_create_ept()
1161 ept->cb = cb; in qcom_glink_create_ept()
1162 ept->priv = priv; in qcom_glink_create_ept()
1163 ept->ops = &glink_endpoint_ops; in qcom_glink_create_ept()
1165 return ept; in qcom_glink_create_ept()
1170 struct glink_channel *channel = to_glink_channel(rpdev->ept); in qcom_glink_announce_create()
1206 static void qcom_glink_destroy_ept(struct rpmsg_endpoint *ept) in qcom_glink_destroy_ept() argument
1208 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_destroy_ept()
1213 channel->ept.cb = NULL; in qcom_glink_destroy_ept()
1321 static int qcom_glink_send(struct rpmsg_endpoint *ept, void *data, int len) in qcom_glink_send() argument
1323 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_send()
1328 static int qcom_glink_trysend(struct rpmsg_endpoint *ept, void *data, int len) in qcom_glink_trysend() argument
1330 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_trysend()
1373 struct glink_channel *channel = to_glink_channel(rpdev->ept); in qcom_glink_rpdev_release()
1425 rpdev->ept = &channel->ept; in qcom_glink_rx_open()
1600 struct glink_channel *channel = to_glink_channel(rpdev->ept); in qcom_glink_device_release()
1623 rpdev->ept = &channel->ept; in qcom_glink_create_chrdev()