Lines Matching refs:pCN
307 xkbControlsNotify * pCN, Bool forceCtrlProc) in XkbComputeControlsNotify() argument
374 pCN->changedControls = changedControls; in XkbComputeControlsNotify()
375 pCN->enabledControls = new->enabled_ctrls; in XkbComputeControlsNotify()
376 pCN->enabledControlChanges = (new->enabled_ctrls ^ old->enabled_ctrls); in XkbComputeControlsNotify()
377 pCN->numGroups = new->num_groups; in XkbComputeControlsNotify()
383 XkbSendControlsNotify(DeviceIntPtr kbd, xkbControlsNotify * pCN) in XkbSendControlsNotify() argument
398 changedControls = pCN->changedControls; in XkbSendControlsNotify()
399 pCN->numGroups = xkbi->desc->ctrls->num_groups; in XkbSendControlsNotify()
405 pCN->type = XkbEventCode + XkbEventBase; in XkbSendControlsNotify()
406 pCN->xkbType = XkbControlsNotify; in XkbSendControlsNotify()
407 pCN->deviceID = kbd->id; in XkbSendControlsNotify()
408 pCN->time = time = GetTimeInMillis(); in XkbSendControlsNotify()
409 enabledChanges = pCN->enabledControlChanges; in XkbSendControlsNotify()
412 pCN->changedControls = changedControls; in XkbSendControlsNotify()
413 pCN->enabledControls = enabledControls; in XkbSendControlsNotify()
414 pCN->enabledControlChanges = enabledChanges; in XkbSendControlsNotify()
415 pCN->sequenceNumber = interest->client->sequence; in XkbSendControlsNotify()
416 pCN->time = time; in XkbSendControlsNotify()
418 swaps(&pCN->sequenceNumber); in XkbSendControlsNotify()
419 swapl(&pCN->changedControls); in XkbSendControlsNotify()
420 swapl(&pCN->enabledControls); in XkbSendControlsNotify()
421 swapl(&pCN->enabledControlChanges); in XkbSendControlsNotify()
422 swapl(&pCN->time); in XkbSendControlsNotify()
424 WriteToClient(interest->client, sizeof(xEvent), pCN); in XkbSendControlsNotify()