Lines Matching refs:req
43 struct tevent_req *req = NULL;
50 req = tevent_req_create(mem_ctx, &state,
52 if (req == NULL) {
78 tevent_req_set_callback(subreq, ipa_deskprofile_get_config_done, req);
84 tevent_req_error(req, ret);
85 tevent_req_post(req, ev);
88 return req;
94 struct tevent_req *req;
101 req = tevent_req_callback_data(subreq, struct tevent_req);
102 state = tevent_req_data(req, struct ipa_deskprofile_config_state);
136 tevent_req_error(req, ret);
140 tevent_req_done(req);
144 ipa_deskprofile_get_config_recv(struct tevent_req *req,
150 state = tevent_req_data(req, struct ipa_deskprofile_config_state);
151 TEVENT_REQ_RETURN_ON_ERROR(req);