Lines Matching refs:tempGrab
288 GrabPtr tempGrab; in ProcXIPassiveUngrabDevice() local
328 tempGrab = AllocGrab(NULL); in ProcXIPassiveUngrabDevice()
329 if (!tempGrab) in ProcXIPassiveUngrabDevice()
332 tempGrab->resource = client->clientAsMask; in ProcXIPassiveUngrabDevice()
333 tempGrab->device = dev; in ProcXIPassiveUngrabDevice()
334 tempGrab->window = win; in ProcXIPassiveUngrabDevice()
337 tempGrab->type = XI_ButtonPress; in ProcXIPassiveUngrabDevice()
340 tempGrab->type = XI_KeyPress; in ProcXIPassiveUngrabDevice()
343 tempGrab->type = XI_Enter; in ProcXIPassiveUngrabDevice()
346 tempGrab->type = XI_FocusIn; in ProcXIPassiveUngrabDevice()
349 tempGrab->type = XI_TouchBegin; in ProcXIPassiveUngrabDevice()
352 tempGrab->grabtype = XI2; in ProcXIPassiveUngrabDevice()
353 tempGrab->modifierDevice = mod_dev; in ProcXIPassiveUngrabDevice()
354 tempGrab->modifiersDetail.pMask = NULL; in ProcXIPassiveUngrabDevice()
355 tempGrab->detail.exact = stuff->detail; in ProcXIPassiveUngrabDevice()
356 tempGrab->detail.pMask = NULL; in ProcXIPassiveUngrabDevice()
361 tempGrab->modifiersDetail.exact = *modifiers; in ProcXIPassiveUngrabDevice()
362 DeletePassiveGrabFromList(tempGrab); in ProcXIPassiveUngrabDevice()
365 FreeGrab(tempGrab); in ProcXIPassiveUngrabDevice()