Searched refs:replyWait (Results 1 - 10 of 10) sorted by relevance

/xsrc/external/mit/libICE/dist/src/
H A Dreplywait.c39 IceReplyWaitInfo *replyWait
43 * Add this replyWait to the end of the list (only if the
44 * replyWait is not already in the list).
55 if (last->reply_wait == replyWait)
66 savedReplyWait->reply_wait = replyWait;
85 * Return the first replyWait in the list with the given majorOpcode
104 IceReplyWaitInfo *replyWait
108 * The replyWait specified has a reply ready.
113 while (savedReplyWait && savedReplyWait->reply_wait != replyWait)
125 IceReplyWaitInfo *replyWait
37 _IceAddReplyWait(IceConn iceConn,IceReplyWaitInfo * replyWait) argument
102 _IceSetReplyReady(IceConn iceConn,IceReplyWaitInfo * replyWait) argument
123 _IceCheckReplyReady(IceConn iceConn,IceReplyWaitInfo * replyWait) argument
[all...]
H A Dprotosetup.c58 IceReplyWaitInfo replyWait; local in function:IceProtocolSetup
206 replyWait.sequence_of_request = setup_sequence;
207 replyWait.major_opcode_of_request = 0;
208 replyWait.minor_opcode_of_request = ICE_ProtocolSetup;
209 replyWait.reply = (IcePointer) &reply;
224 iceConn, &replyWait, &gotReply) == IceProcessMessagesIOError);
H A Dprocess.c118 * 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 i
170 IceProcessMessages(IceConn iceConn,IceReplyWaitInfo * replyWait,Bool * replyReadyRet) argument
604 ProcessError(IceConn iceConn,unsigned long length,Bool swap,IceReplyWaitInfo * replyWait) argument
1141 ProcessAuthRequired(IceConn iceConn,unsigned long length,Bool swap,IceReplyWaitInfo * replyWait) argument
1625 ProcessAuthNextPhase(IceConn iceConn,unsigned long length,Bool swap,IceReplyWaitInfo * replyWait) argument
1757 ProcessConnectionReply(IceConn iceConn,unsigned long length,Bool swap,IceReplyWaitInfo * replyWait) argument
2260 ProcessProtocolReply(IceConn iceConn,unsigned long length,Bool swap,IceReplyWaitInfo * replyWait) argument
2496 _IceProcessCoreMessage(IceConn iceConn,int opcode,unsigned long length,Bool swap,IceReplyWaitInfo * replyWait,Bool * replyReadyRet,Bool * connectionClosedRet) argument
[all...]
H A Dconnect.c58 IceReplyWaitInfo replyWait; local in function:IceOpenConnection
396 replyWait.sequence_of_request = setup_sequence;
397 replyWait.major_opcode_of_request = 0;
398 replyWait.minor_opcode_of_request = ICE_ConnectionSetup;
399 replyWait.reply = (IcePointer) &reply;
407 iceConn, &replyWait, &gotReply) == IceProcessMessagesIOError);
/xsrc/external/mit/xfindproxy/dist/
H A Dxfindproxy.c52 IceReplyWaitInfo *replyWait,
147 IceReplyWaitInfo replyWait; local in function:main
339 replyWait.sequence_of_request = IceLastSentSequenceNumber (iceConn);
340 replyWait.major_opcode_of_request = PMopcode;
341 replyWait.minor_opcode_of_request = PM_GetProxyAddr;
342 replyWait.reply = (IcePointer) &reply;
350 iceConn, &replyWait, &gotReply) == IceProcessMessagesIOError);
381 IceReplyWaitInfo *replyWait, Bool *replyReadyRet)
383 if (replyWait)
390 if (!replyWait ||
379 PMprocessMessages(IceConn iceConn,IcePointer clientData,int opcode,unsigned long length,Bool swap,IceReplyWaitInfo * replyWait,Bool * replyReadyRet) argument
[all...]
/xsrc/external/mit/libSM/dist/src/
H A Dsm_client.c70 IceReplyWaitInfo replyWait;
216 replyWait.sequence_of_request = IceLastSentSequenceNumber (iceConn);
217 replyWait.major_opcode_of_request = _SmcOpcode;
218 replyWait.minor_opcode_of_request = SM_RegisterClient;
219 replyWait.reply = (IcePointer) &reply;
227 iceConn, &replyWait, &gotReply) == IceProcessMessagesIOError);
276 replyWait.sequence_of_request =
69 IceReplyWaitInfo replyWait; local in function:SmcOpenConnection
H A Dsm_process.c180 IceReplyWaitInfo *replyWait, Bool *replyReadyRet)
184 if (replyWait)
223 if (replyWait &&
224 replyWait->minor_opcode_of_request == SM_RegisterClient &&
227 pMsg->offendingSequenceNum == replyWait->sequence_of_request)
234 (_SmcRegisterClientReply *) (replyWait->reply);
262 if (!replyWait ||
263 replyWait->minor_opcode_of_request != SM_RegisterClient)
275 (_SmcRegisterClientReply *) (replyWait->reply);
174 _SmcProcessMessage(IceConn iceConn,IcePointer clientData,int opcode,unsigned long length,Bool swap,IceReplyWaitInfo * replyWait,Bool * replyReadyRet) argument
H A DSMlibint.h384 IceReplyWaitInfo *replyWait, Bool *replyReadyRet);
/xsrc/external/mit/proxymngr/dist/
H A Dpmint.h68 extern void PMSetupProcessMessages ( IceConn iceConn, IcePointer clientData, int opcode, unsigned long length, int swap, IceReplyWaitInfo *replyWait, int *replyReadyRet );
H A Dmain.c882 IceReplyWaitInfo *replyWait, Bool *replyReadyRet)
885 assert (replyWait == NULL);
879 PMSetupProcessMessages(IceConn iceConn,IcePointer clientData,int opcode,unsigned long length,Bool swap,IceReplyWaitInfo * replyWait,Bool * replyReadyRet) argument

Completed in 9 milliseconds