Home
last modified time | relevance | path

Searched refs:replyWait (Results 1 – 7 of 7) sorted by relevance

/dports/x11/libICE/libICE-1.0.10/src/
H A Dreplywait.c39 IceReplyWaitInfo *replyWait in _IceAddReplyWait() argument
55 if (last->reply_wait == replyWait) in _IceAddReplyWait()
64 savedReplyWait->reply_wait = replyWait; in _IceAddReplyWait()
102 IceReplyWaitInfo *replyWait in _IceSetReplyReady() argument
111 while (savedReplyWait && savedReplyWait->reply_wait != replyWait) in _IceSetReplyReady()
123 IceReplyWaitInfo *replyWait in _IceCheckReplyReady() argument
133 if (savedReplyWait->reply_wait == replyWait) in _IceCheckReplyReady()
H A Dprocess.c172 IceReplyWaitInfo *replyWait, in IceProcessMessages() argument
181 if (replyWait) in IceProcessMessages()
286 if (replyWait) in IceProcessMessages()
406 if (replyWait) in IceProcessMessages()
595 IceReplyWaitInfo *replyWait in ProcessError() argument
637 if (!replyWait || in ProcessError()
1124 IceReplyWaitInfo *replyWait in ProcessAuthRequired() argument
1608 IceReplyWaitInfo *replyWait in ProcessAuthNextPhase() argument
1740 IceReplyWaitInfo *replyWait in ProcessConnectionReply() argument
2236 IceReplyWaitInfo *replyWait in ProcessProtocolReply() argument
[all …]
H A Dprotosetup.c58 IceReplyWaitInfo replyWait; in IceProtocolSetup() local
185 replyWait.sequence_of_request = setup_sequence; in IceProtocolSetup()
186 replyWait.major_opcode_of_request = 0; in IceProtocolSetup()
187 replyWait.minor_opcode_of_request = ICE_ProtocolSetup; in IceProtocolSetup()
188 replyWait.reply = (IcePointer) &reply; in IceProtocolSetup()
203 iceConn, &replyWait, &gotReply) == IceProcessMessagesIOError); in IceProtocolSetup()
H A Dconnect.c58 IceReplyWaitInfo replyWait; in IceOpenConnection() local
373 replyWait.sequence_of_request = setup_sequence; in IceOpenConnection()
374 replyWait.major_opcode_of_request = 0; in IceOpenConnection()
375 replyWait.minor_opcode_of_request = ICE_ConnectionSetup; in IceOpenConnection()
376 replyWait.reply = (IcePointer) &reply; in IceOpenConnection()
384 iceConn, &replyWait, &gotReply) == IceProcessMessagesIOError); in IceOpenConnection()
/dports/x11/libSM/libSM-1.2.3/src/
H A Dsm_client.c69 IceReplyWaitInfo replyWait; in SmcOpenConnection() local
211 replyWait.sequence_of_request = IceLastSentSequenceNumber (iceConn); in SmcOpenConnection()
212 replyWait.major_opcode_of_request = _SmcOpcode; in SmcOpenConnection()
213 replyWait.minor_opcode_of_request = SM_RegisterClient; in SmcOpenConnection()
214 replyWait.reply = (IcePointer) &reply; in SmcOpenConnection()
222 iceConn, &replyWait, &gotReply) == IceProcessMessagesIOError); in SmcOpenConnection()
267 replyWait.sequence_of_request = in SmcOpenConnection()
H A Dsm_process.c176 IceReplyWaitInfo *replyWait, Bool *replyReadyRet) in _SmcProcessMessage() argument
180 if (replyWait) in _SmcProcessMessage()
219 if (replyWait && in _SmcProcessMessage()
220 replyWait->minor_opcode_of_request == SM_RegisterClient && in _SmcProcessMessage()
223 pMsg->offendingSequenceNum == replyWait->sequence_of_request) in _SmcProcessMessage()
230 (_SmcRegisterClientReply *) (replyWait->reply); in _SmcProcessMessage()
258 if (!replyWait || in _SmcProcessMessage()
259 replyWait->minor_opcode_of_request != SM_RegisterClient) in _SmcProcessMessage()
271 (_SmcRegisterClientReply *) (replyWait->reply); in _SmcProcessMessage()
H A DSMlibint.h371 IceReplyWaitInfo *replyWait, Bool *replyReadyRet);