Lines Matching refs:temporaryGrab
101 GrabPtr temporaryGrab; in ProcXUngrabDeviceKey() local
137 temporaryGrab = AllocGrab(NULL); in ProcXUngrabDeviceKey()
138 if (!temporaryGrab) in ProcXUngrabDeviceKey()
141 temporaryGrab->resource = client->clientAsMask; in ProcXUngrabDeviceKey()
142 temporaryGrab->device = dev; in ProcXUngrabDeviceKey()
143 temporaryGrab->window = pWin; in ProcXUngrabDeviceKey()
144 temporaryGrab->type = DeviceKeyPress; in ProcXUngrabDeviceKey()
145 temporaryGrab->grabtype = XI; in ProcXUngrabDeviceKey()
146 temporaryGrab->modifierDevice = mdev; in ProcXUngrabDeviceKey()
147 temporaryGrab->modifiersDetail.exact = stuff->modifiers; in ProcXUngrabDeviceKey()
148 temporaryGrab->modifiersDetail.pMask = NULL; in ProcXUngrabDeviceKey()
149 temporaryGrab->detail.exact = stuff->key; in ProcXUngrabDeviceKey()
150 temporaryGrab->detail.pMask = NULL; in ProcXUngrabDeviceKey()
152 DeletePassiveGrabFromList(temporaryGrab); in ProcXUngrabDeviceKey()
153 FreeGrab(temporaryGrab); in ProcXUngrabDeviceKey()