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 return rte_mp_reply(&reply, peer); in handle_sync()
402 const struct rte_mp_reply *reply) in handle_sync_response() argument
421 if (reply->nb_received != reply->nb_sent) in handle_sync_response()
424 for (i = 0; i < reply->nb_received; i++) { in handle_sync_response()
426 (struct malloc_mp_req *)reply->msgs[i].param; in handle_sync_response()
550 const struct rte_mp_reply *reply __rte_unused) in handle_rollback_response()
630 struct rte_mp_reply reply; in request_sync() local
636 memset(&reply, 0, sizeof(reply)); in request_sync()
653 ret = rte_mp_request_sync(&msg, &reply, &ts); in request_sync()
664 if (reply.nb_received != reply.nb_sent) { in request_sync()
669 for (i = 0; i < reply.nb_received; i++) { in request_sync()
671 (struct malloc_mp_req *)reply.msgs[i].param; in request_sync()
688 free(reply.msgs); in request_sync()