Lines Matching refs:req

33 	switch (p_data->hdr.req) {  in nrfs_dvfs_service_notify()
85 nrfs_dvfs_req_t req; in nrfs_dvfs_init_prepare_request() local
87 NRFS_SERVICE_HDR_FILL(&req, NRFS_DVFS_REQ_INIT_PREPARE); in nrfs_dvfs_init_prepare_request()
88 req.ctx.ctx = (uint32_t)p_context; in nrfs_dvfs_init_prepare_request()
90 return nrfs_backend_send(&req, sizeof(req)); in nrfs_dvfs_init_prepare_request()
99 nrfs_dvfs_req_t req; in nrfs_dvfs_init_complete_request() local
101 NRFS_SERVICE_HDR_FILL(&req, NRFS_DVFS_REQ_INIT_COMPLETE); in nrfs_dvfs_init_complete_request()
102 req.ctx.ctx = (uint32_t)p_context; in nrfs_dvfs_init_complete_request()
104 return nrfs_backend_send(&req, sizeof(req)); in nrfs_dvfs_init_complete_request()
113 nrfs_dvfs_opp_req_t req; in nrfs_dvfs_oppoint_request() local
115 NRFS_SERVICE_HDR_FILL(&req, NRFS_DVFS_REQ_OPPOINT); in nrfs_dvfs_oppoint_request()
116 req.ctx.ctx = (uint32_t)p_context; in nrfs_dvfs_oppoint_request()
117 req.data.target_freq = target_freq; in nrfs_dvfs_oppoint_request()
119 return nrfs_backend_send(&req, sizeof(req)); in nrfs_dvfs_oppoint_request()
129 nrfs_dvfs_opp_req_t req; in nrfs_dvfs_oppoint_request_no_rsp() local
131 NRFS_SERVICE_HDR_FILL(&req, NRFS_DVFS_REQ_OPPOINT); in nrfs_dvfs_oppoint_request_no_rsp()
132 NRFS_HDR_NO_RSP_SET(&req.hdr); in nrfs_dvfs_oppoint_request_no_rsp()
133 req.ctx.ctx = (uint32_t)p_context; in nrfs_dvfs_oppoint_request_no_rsp()
134 req.data.target_freq = target_freq; in nrfs_dvfs_oppoint_request_no_rsp()
136 return nrfs_backend_send(&req, sizeof(req)); in nrfs_dvfs_oppoint_request_no_rsp()
145 nrfs_dvfs_req_t req; in nrfs_dvfs_ready_to_scale() local
147 NRFS_SERVICE_HDR_FILL(&req, NRFS_DVFS_REQ_READY_TO_SCALE); in nrfs_dvfs_ready_to_scale()
148 req.ctx.ctx = (uint32_t)p_context; in nrfs_dvfs_ready_to_scale()
150 return nrfs_backend_send(&req, sizeof(req)); in nrfs_dvfs_ready_to_scale()