Lines Matching full:reply
75 :param received: The raw RPC error reply received.
96 terminated before a reply was received.
129 i.e. A reply has arrived from the server, but it is missing the "ID"
139 An execution reply was successfully routed, but not understood.
144 A reply message is malformed if it is missing either the 'return' or
149 :param msg: The malformed reply that was received.
223 # Incoming RPC reply messages.
305 reply = await self._recv()
306 assert 'return' in reply
307 assert 'error' not in reply
426 Issue a QMP `Message` and do not wait for a reply.
449 Await a reply to a previously issued QMP message.
453 :return: The reply from the server.
455 When the reply could not be retrieved because the connection
471 Send a QMP `Message` to the server and await a reply.
474 statement that *will* receive a reply.
484 :return: Execution reply from the server.
486 When the reply could not be retrieved because the connection
506 Issue a raw `Message` to the QMP server and await a reply.
518 :return: Execution reply from the server.
521 When the reply could not be retrieved because the connection
574 reply = await self._execute(msg)
576 if 'error' in reply:
578 error_response = ErrorResponse(reply)
582 "QMP error reply is malformed", reply, msg,
585 raise ExecuteError(error_response, msg, reply)
587 if 'return' not in reply:
589 "QMP reply is missing a 'error' or 'return' member",
590 reply, msg,
593 return reply['return']