Lines Matching refs:pSN
203 XkbSendStateNotify(DeviceIntPtr kbd, xkbStateNotify * pSN) in XkbSendStateNotify() argument
217 pSN->type = XkbEventCode + XkbEventBase; in XkbSendStateNotify()
218 pSN->xkbType = XkbStateNotify; in XkbSendStateNotify()
219 pSN->deviceID = kbd->id; in XkbSendStateNotify()
220 pSN->time = time = GetTimeInMillis(); in XkbSendStateNotify()
221 pSN->mods = state->mods; in XkbSendStateNotify()
222 pSN->baseMods = state->base_mods; in XkbSendStateNotify()
223 pSN->latchedMods = state->latched_mods; in XkbSendStateNotify()
224 pSN->lockedMods = state->locked_mods; in XkbSendStateNotify()
225 pSN->group = state->group; in XkbSendStateNotify()
226 pSN->baseGroup = state->base_group; in XkbSendStateNotify()
227 pSN->latchedGroup = state->latched_group; in XkbSendStateNotify()
228 pSN->lockedGroup = state->locked_group; in XkbSendStateNotify()
229 pSN->compatState = state->compat_state; in XkbSendStateNotify()
230 pSN->grabMods = state->grab_mods; in XkbSendStateNotify()
231 pSN->compatGrabMods = state->compat_grab_mods; in XkbSendStateNotify()
232 pSN->lookupMods = state->lookup_mods; in XkbSendStateNotify()
233 pSN->compatLookupMods = state->compat_lookup_mods; in XkbSendStateNotify()
234 pSN->ptrBtnState = state->ptr_buttons; in XkbSendStateNotify()
235 changed = pSN->changed; in XkbSendStateNotify()
236 bState = pSN->ptrBtnState; in XkbSendStateNotify()
242 pSN->sequenceNumber = interest->client->sequence; in XkbSendStateNotify()
243 pSN->time = time; in XkbSendStateNotify()
244 pSN->changed = changed; in XkbSendStateNotify()
245 pSN->ptrBtnState = bState; in XkbSendStateNotify()
247 swaps(&pSN->sequenceNumber); in XkbSendStateNotify()
248 swapl(&pSN->time); in XkbSendStateNotify()
249 swaps(&pSN->changed); in XkbSendStateNotify()
250 swaps(&pSN->ptrBtnState); in XkbSendStateNotify()
252 WriteToClient(interest->client, sizeof(xEvent), pSN); in XkbSendStateNotify()