Lines Matching refs:qsept

202 	struct qcom_smd_endpoint *qsept;  member
416 struct rpmsg_endpoint *ept = &channel->qsept->ept; in qcom_smd_channel_set_callback()
544 struct rpmsg_endpoint *ept = &channel->qsept->ept; in qcom_smd_channel_recv_single()
905 struct qcom_smd_endpoint *qsept; in qcom_smd_create_ept() local
925 qsept = kzalloc(sizeof(*qsept), GFP_KERNEL); in qcom_smd_create_ept()
926 if (!qsept) in qcom_smd_create_ept()
929 ept = &qsept->ept; in qcom_smd_create_ept()
938 channel->qsept = qsept; in qcom_smd_create_ept()
939 qsept->qsch = channel; in qcom_smd_create_ept()
948 channel->qsept = NULL; in qcom_smd_create_ept()
955 struct qcom_smd_endpoint *qsept = to_smd_endpoint(ept); in qcom_smd_destroy_ept() local
956 struct qcom_smd_channel *ch = qsept->qsch; in qcom_smd_destroy_ept()
959 ch->qsept = NULL; in qcom_smd_destroy_ept()
965 struct qcom_smd_endpoint *qsept = to_smd_endpoint(ept); in qcom_smd_send() local
967 return __qcom_smd_send(qsept->qsch, data, len, true); in qcom_smd_send()
972 struct qcom_smd_endpoint *qsept = to_smd_endpoint(ept); in qcom_smd_trysend() local
974 return __qcom_smd_send(qsept->qsch, data, len, false); in qcom_smd_trysend()
979 struct qcom_smd_endpoint *qsept = to_smd_endpoint(ept); in qcom_smd_sendto() local
981 return __qcom_smd_send(qsept->qsch, data, len, true); in qcom_smd_sendto()
986 struct qcom_smd_endpoint *qsept = to_smd_endpoint(ept); in qcom_smd_trysendto() local
988 return __qcom_smd_send(qsept->qsch, data, len, false); in qcom_smd_trysendto()
994 struct qcom_smd_endpoint *qsept = to_smd_endpoint(ept); in qcom_smd_poll() local
995 struct qcom_smd_channel *channel = qsept->qsch; in qcom_smd_poll()