Lines Matching defs:replyWait

118  * If replyWait == NULL, the client is not waiting for a reply.
120 * If replyWait != NULL, the client is waiting for a reply...
122 * - replyWait->sequence_of_request is the sequence number of the
124 * to determine if an error matches a replyWait.
126 * - replyWait->major_opcode_of_request is the major opcode of the
129 * - replyWait->minor_opcode_of_request is the minor opcode of the
132 * - replyWait->reply is a pointer to the reply message which will be
152 * replyWait, we add it to the END of the 'saved_reply_waits' list. When
153 * we read a message and want to see if it matches a replyWait, we use the
154 * FIRST replyWait in the list with the major opcode of the message. If the
155 * reply is ready, we remove that replyWait from the list.
157 * If the reply/error is ready for the replyWait passed in to
172 IceReplyWaitInfo *replyWait,
181 if (replyWait)
286 if (replyWait)
293 _IceAddReplyWait (iceConn, replyWait);
297 * the one passed into IceProcessMessages, and is the replyWait
299 * the replyWait for the message currently being processed
401 * Now we check if the reply is ready for the replyWait passed
402 * into IceProcessMessages. The replyWait is removed from the
403 * replyWait list if it is ready.
406 if (replyWait)
407 *replyReadyRet = _IceCheckReplyReady (iceConn, replyWait);
608 IceReplyWaitInfo *replyWait
650 if (!replyWait ||
651 message->offendingSequenceNum != replyWait->sequence_of_request)
664 &(((_IceReply *) (replyWait->reply))->connection_error);
735 &(((_IceReply *) (replyWait->reply))->protocol_error);
1145 IceReplyWaitInfo *replyWait
1186 &(((_IceReply *) (replyWait->reply))->connection_error);
1216 &(((_IceReply *) (replyWait->reply))->protocol_error);
1268 replyWait->sequence_of_request = iceConn->send_sequence;
1269 replyWait->minor_opcode_of_request = ICE_AuthReply;
1309 &(((_IceReply *) (replyWait->reply))->connection_error);
1317 &(((_IceReply *) (replyWait->reply))->protocol_error);
1629 IceReplyWaitInfo *replyWait
1702 replyWait->sequence_of_request = iceConn->send_sequence;
1731 &(((_IceReply *) (replyWait->reply))->connection_error);
1739 &(((_IceReply *) (replyWait->reply))->protocol_error);
1761 IceReplyWaitInfo *replyWait
1817 &(((_IceReply *) (replyWait->reply))->connection_error);
1829 _IceReply *reply = (_IceReply *) (replyWait->reply);
2264 IceReplyWaitInfo *replyWait
2324 &(((_IceReply *) (replyWait->reply))->protocol_error);
2337 &(((_IceReply *) (replyWait->reply))->protocol_reply);
2501 IceReplyWaitInfo *replyWait,
2514 replyReady = ProcessError (iceConn, length, swap, replyWait);
2524 replyReady = ProcessAuthRequired (iceConn, length, swap, replyWait);
2534 replyReady = ProcessAuthNextPhase (iceConn, length, swap, replyWait);
2539 replyReady = ProcessConnectionReply (iceConn, length, swap, replyWait);
2549 replyReady = ProcessProtocolReply (iceConn, length, swap, replyWait);
2579 if (replyWait)