Lines Matching refs:pCN
308 xkbControlsNotify * pCN,
375 pCN->changedControls = changedControls;
376 pCN->enabledControls = new->enabled_ctrls;
377 pCN->enabledControlChanges = (new->enabled_ctrls^old->enabled_ctrls);
378 pCN->numGroups = new->num_groups;
384 XkbSendControlsNotify(DeviceIntPtr kbd,xkbControlsNotify *pCN)
399 changedControls = pCN->changedControls;
400 pCN->numGroups= xkbi->desc->ctrls->num_groups;
408 pCN->type = XkbEventCode + XkbEventBase;
409 pCN->xkbType = XkbControlsNotify;
410 pCN->deviceID = kbd->id;
411 pCN->time = time = GetTimeInMillis();
412 enabledChanges = pCN->enabledControlChanges;
415 pCN->changedControls = changedControls;
416 pCN->enabledControls = enabledControls;
417 pCN->enabledControlChanges = enabledChanges;
418 pCN->sequenceNumber = interest->client->sequence;
419 pCN->time = time;
422 swaps(&pCN->sequenceNumber,n);
423 swapl(&pCN->changedControls,n);
424 swapl(&pCN->enabledControls,n);
425 swapl(&pCN->enabledControlChanges,n);
426 swapl(&pCN->time,n);
428 WriteToClient(interest->client, sizeof(xEvent), (char *)pCN);