Lines Matching refs:reply
34 const struct rte_mp_reply *reply);
37 const struct rte_mp_reply *reply);
149 struct rte_mp_msg reply; in handle_sync() local
153 (struct malloc_mp_req *)reply.param; in handle_sync()
161 memset(&reply, 0, sizeof(reply)); in handle_sync()
163 reply.num_fds = 0; in handle_sync()
164 strlcpy(reply.name, msg->name, sizeof(reply.name)); in handle_sync()
165 reply.len_param = sizeof(*resp); in handle_sync()
173 rte_mp_reply(&reply, peer); in handle_sync()
346 const struct rte_mp_reply *reply) in handle_sync_response() argument
365 if (reply->nb_received != reply->nb_sent) in handle_sync_response()
368 for (i = 0; i < reply->nb_received; i++) { in handle_sync_response()
370 (struct malloc_mp_req *)reply->msgs[i].param; in handle_sync_response()
494 const struct rte_mp_reply *reply __rte_unused) in handle_rollback_response()
574 struct rte_mp_reply reply; in request_sync() local
580 memset(&reply, 0, sizeof(reply)); in request_sync()
597 ret = rte_mp_request_sync(&msg, &reply, &ts); in request_sync()
608 if (reply.nb_received != reply.nb_sent) { in request_sync()
613 for (i = 0; i < reply.nb_received; i++) { in request_sync()
615 (struct malloc_mp_req *)reply.msgs[i].param; in request_sync()
632 free(reply.msgs); in request_sync()