Lines Matching refs:ept

155 	struct rpmsg_endpoint ept;  member
186 #define to_glink_channel(_ept) container_of(_ept, struct glink_channel, ept)
860 if (channel->ept.cb) { in qcom_glink_rx_data()
861 channel->ept.cb(channel->ept.rpdev, in qcom_glink_rx_data()
864 channel->ept.priv, in qcom_glink_rx_data()
1116 struct glink_channel *parent = to_glink_channel(rpdev->ept); in qcom_glink_create_ept()
1119 struct rpmsg_endpoint *ept; in qcom_glink_create_ept() local
1142 ept = &channel->ept; in qcom_glink_create_ept()
1143 ept->rpdev = rpdev; in qcom_glink_create_ept()
1144 ept->cb = cb; in qcom_glink_create_ept()
1145 ept->priv = priv; in qcom_glink_create_ept()
1146 ept->ops = &glink_endpoint_ops; in qcom_glink_create_ept()
1148 return ept; in qcom_glink_create_ept()
1153 struct glink_channel *channel = to_glink_channel(rpdev->ept); in qcom_glink_announce_create()
1189 static void qcom_glink_destroy_ept(struct rpmsg_endpoint *ept) in qcom_glink_destroy_ept() argument
1191 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_destroy_ept()
1196 channel->ept.cb = NULL; in qcom_glink_destroy_ept()
1304 static int qcom_glink_send(struct rpmsg_endpoint *ept, void *data, int len) in qcom_glink_send() argument
1306 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_send()
1311 static int qcom_glink_trysend(struct rpmsg_endpoint *ept, void *data, int len) in qcom_glink_trysend() argument
1313 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_trysend()
1356 struct glink_channel *channel = to_glink_channel(rpdev->ept); in qcom_glink_rpdev_release()
1408 rpdev->ept = &channel->ept; in qcom_glink_rx_open()