Lines Matching refs:ept

151 	struct rpmsg_endpoint ept;  member
182 #define to_glink_channel(_ept) container_of(_ept, struct glink_channel, ept)
916 if (channel->ept.cb) { in qcom_glink_rx_data()
917 channel->ept.cb(channel->ept.rpdev, in qcom_glink_rx_data()
920 channel->ept.priv, in qcom_glink_rx_data()
1171 struct glink_channel *parent = to_glink_channel(rpdev->ept); in qcom_glink_create_ept()
1174 struct rpmsg_endpoint *ept; in qcom_glink_create_ept() local
1197 ept = &channel->ept; in qcom_glink_create_ept()
1198 ept->rpdev = rpdev; in qcom_glink_create_ept()
1199 ept->cb = cb; in qcom_glink_create_ept()
1200 ept->priv = priv; in qcom_glink_create_ept()
1201 ept->ops = &glink_endpoint_ops; in qcom_glink_create_ept()
1203 return ept; in qcom_glink_create_ept()
1208 struct glink_channel *channel = to_glink_channel(rpdev->ept); in qcom_glink_announce_create()
1244 static void qcom_glink_destroy_ept(struct rpmsg_endpoint *ept) in qcom_glink_destroy_ept() argument
1246 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_destroy_ept()
1251 channel->ept.cb = NULL; in qcom_glink_destroy_ept()
1389 static int qcom_glink_send(struct rpmsg_endpoint *ept, void *data, int len) in qcom_glink_send() argument
1391 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_send()
1396 static int qcom_glink_trysend(struct rpmsg_endpoint *ept, void *data, int len) in qcom_glink_trysend() argument
1398 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_trysend()
1403 static int qcom_glink_sendto(struct rpmsg_endpoint *ept, void *data, int len, u32 dst) in qcom_glink_sendto() argument
1405 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_sendto()
1410 static int qcom_glink_trysendto(struct rpmsg_endpoint *ept, void *data, int len, u32 dst) in qcom_glink_trysendto() argument
1412 struct glink_channel *channel = to_glink_channel(ept); in qcom_glink_trysendto()
1508 rpdev->ept = &channel->ept; in qcom_glink_rx_open()
1698 struct glink_channel *channel = to_glink_channel(rpdev->ept); in qcom_glink_device_release()
1722 rpdev->ept = &channel->ept; in qcom_glink_create_chrdev()