Lines Matching refs:temporaryGrab
99 GrabPtr temporaryGrab; in ProcXUngrabDeviceButton() local
130 temporaryGrab = AllocGrab(NULL); in ProcXUngrabDeviceButton()
131 if (!temporaryGrab) in ProcXUngrabDeviceButton()
134 temporaryGrab->resource = client->clientAsMask; in ProcXUngrabDeviceButton()
135 temporaryGrab->device = dev; in ProcXUngrabDeviceButton()
136 temporaryGrab->window = pWin; in ProcXUngrabDeviceButton()
137 temporaryGrab->type = DeviceButtonPress; in ProcXUngrabDeviceButton()
138 temporaryGrab->grabtype = XI; in ProcXUngrabDeviceButton()
139 temporaryGrab->modifierDevice = mdev; in ProcXUngrabDeviceButton()
140 temporaryGrab->modifiersDetail.exact = stuff->modifiers; in ProcXUngrabDeviceButton()
141 temporaryGrab->modifiersDetail.pMask = NULL; in ProcXUngrabDeviceButton()
142 temporaryGrab->detail.exact = stuff->button; in ProcXUngrabDeviceButton()
143 temporaryGrab->detail.pMask = NULL; in ProcXUngrabDeviceButton()
145 DeletePassiveGrabFromList(temporaryGrab); in ProcXUngrabDeviceButton()
147 FreeGrab(temporaryGrab); in ProcXUngrabDeviceButton()