Lines Matching defs:reply
36 const struct rte_mp_reply *reply);
39 const struct rte_mp_reply *reply);
94 * if received sync request, synchronize memory map and reply with result
99 * if received rollback request, synchronize memory map and reply with result
116 * if received sync request, synchronize memory map and reply with result
151 struct rte_mp_msg reply;
155 (struct malloc_mp_req *)reply.param;
163 memset(&reply, 0, sizeof(reply));
165 reply.num_fds = 0;
166 strlcpy(reply.name, msg->name, sizeof(reply.name));
167 reply.len_param = sizeof(*resp);
175 return rte_mp_reply(&reply, peer);
404 const struct rte_mp_reply *reply)
423 if (reply->nb_received != reply->nb_sent)
426 for (i = 0; i < reply->nb_received; i++) {
428 (struct malloc_mp_req *)reply->msgs[i].param;
552 const struct rte_mp_reply *reply __rte_unused)
632 struct rte_mp_reply reply;
638 memset(&reply, 0, sizeof(reply));
655 ret = rte_mp_request_sync(&msg, &reply, &ts);
666 if (reply.nb_received != reply.nb_sent) {
671 for (i = 0; i < reply.nb_received; i++) {
673 (struct malloc_mp_req *)reply.msgs[i].param;
690 free(reply.msgs);