Lines Matching defs:reply

402  *   reply (output) - reply message. If 0, reply will be
408 * otherwise - error from reply header.
411 * - The reply body is only returned if the error code is NDMP_NO_ERR.
415 ndmp_error err, void *request_data, void **reply)
463 * Process messages until the reply to this request has been
473 /* no reply received? */
477 /* reply received? */
482 "Received unexpected reply 0x%x",
487 if (reply != NULL)
488 *reply = connection->conn_msginfo.mi_body;
494 /* error handling reply */
511 * reply (output) - reply message. If 0, reply will be
517 * otherwise - error from reply header.
520 * - The reply body is only returned if the error code is NDMP_NO_ERR.
524 ndmp_message message, ndmp_error err, void *request_data, void **reply)
532 reply);
541 * Send an NDMP reply message.
546 * reply (input) - reply message body.
557 void *reply)
575 "encoding reply header",
582 reply) {
584 &connection->conn_xdrs, reply)) {
586 "Sending message 0x%x: encoding reply body",
1084 "Processing reply 0x%x: no xdr function "
1128 * This function processes both request and reply messages.
1131 * Only one reply messages may be pending receipt at a time.
1132 * A reply message, if received, is placed in connection->conn_msginfo
1134 * Errors are reported if a reply is received but not expected or if
1135 * more than one reply message is received
1139 * reply_expected (output) - TRUE - a reply message is expected.
1140 * FALSE - no reply message is expected and
1141 * an error will be reported if a reply
1146 * error processing reply message.
1148 * reply seen.
1150 * no reply seen.
1155 * looking for a reply will be blocked while the requests are handled.
1160 * prevent poll() from blocking and prevent a caller looking for a reply
1190 * Don't send a reply since we don't know
1193 * that the message was a reply if a reply
1196 * reply. Don't set reply_read so that the
1197 * reply will be processed if it is received
1207 NDMP_LOG(LOG_DEBUG, "received reply: 0x%x",
1213 "Unexpected reply message: 0x%x",
1236 NDMP_LOG(LOG_DEBUG, "received reply: 0x%x",
1241 "Unexpected reply message: 0x%x",
1270 * The handler will send any necessary reply.