Home
last modified time | relevance | path

Searched refs:grabtype (Results 1 – 17 of 17) sorted by relevance

/OK3568_Linux_fs/external/xserver/dix/
H A Dgrabs.c85 (grab->grabtype == XI2) ? "xi2" : in PrintDeviceGrabInfo()
86 ((grab->grabtype == CORE) ? "core" : "xi1"), dev->name, dev->id); in PrintDeviceGrabInfo()
124 if (grab->grabtype == CORE) { in PrintDeviceGrabInfo()
128 else if (grab->grabtype == XI) { in PrintDeviceGrabInfo()
133 else if (grab->grabtype == XI2) { in PrintDeviceGrabInfo()
214 WindowPtr window, enum InputLevel grabtype, GrabMask *mask, in CreateGrab() argument
227 if (grabtype == CORE || grabtype == XI) in CreateGrab()
239 grab->grabtype = grabtype; in CreateGrab()
246 if (grabtype == XI2) in CreateGrab()
407 unsigned int any_modifier = (pFirstGrab->grabtype == XI2) ? in GrabSupersedesSecond()
[all …]
H A Devents.c1482 listener->level = grab->grabtype; in UpdateTouchesForGrab()
1486 if (grab->grabtype == CORE || grab->grabtype == XI || in UpdateTouchesForGrab()
1524 if (grab->grabtype == XI2 && in ActivatePointerGrab()
1579 if (grab->grabtype == CORE || grab->grabtype == XI || in DeactivatePointerGrab()
1609 if (!wasImplicit && grab->grabtype == XI2) in DeactivatePointerGrab()
1631 if (grab->grabtype == XI2 && keybd->enabled && in ActivateKeyboardGrab()
1699 if (!wasImplicit && grab->grabtype == XI2) in DeactivateKeyboardGrab()
2041 enum InputLevel grabtype; in ActivateImplicitGrab() local
2044 grabtype = CORE; in ActivateImplicitGrab()
2046 grabtype = XI; in ActivateImplicitGrab()
[all …]
H A Dtouch.c739 if (grab->grabtype == XI2) { in TouchAddGrabListener()
745 else if (grab->grabtype == XI || grab->grabtype == CORE) { in TouchAddGrabListener()
751 TouchAddListener(ti, grab->resource, RT_NONE, grab->grabtype, in TouchAddGrabListener()
863 (grab->grabtype == CORE || grab->grabtype == XI)) in TouchAddActiveGrabListener()
867 grab->grabtype == XI2 && in TouchAddActiveGrabListener()
H A Dwindow.c279 switch (pGrab->grabtype) { in grab_grabtype_to_text()
327 if (pGrab->grabtype == CORE) { in log_grab_info()
331 else if (pGrab->grabtype == XI) { in log_grab_info()
335 else if (pGrab->grabtype == XI2) { in log_grab_info()
/OK3568_Linux_fs/external/xserver/test/
H A Dinput.c167 param.grabtype = CORE; in dix_check_grab_values()
582 a.grabtype = CORE; in dix_grab_matching()
583 b.grabtype = XI2; in dix_grab_matching()
589 a.grabtype = XI; in dix_grab_matching()
590 b.grabtype = XI2; in dix_grab_matching()
596 a.grabtype = XI; in dix_grab_matching()
597 b.grabtype = CORE; in dix_grab_matching()
619 a.grabtype = XI2; in dix_grab_matching()
620 b.grabtype = XI2; in dix_grab_matching()
649 a.grabtype = XI; in dix_grab_matching()
[all …]
/OK3568_Linux_fs/external/xserver/test/xi2/
H A Dprotocol-xipassivegrabdevice.c56 GrabParameters *param, enum InputLevel grabtype,
60 GrabParameters *param, enum InputLevel grabtype,
68 GrabParameters *param, enum InputLevel grabtype, in __wrap_GrabButton() argument
72 __real_GrabButton(client, dev, modifier_device, button, param, grabtype, mask); in __wrap_GrabButton()
/OK3568_Linux_fs/external/xserver/Xi/
H A Dexevents.c1141 listener->grab->grabtype != XI2 || in TouchPuntToNextOwner()
1429 deliveries = DeliverOneGrabbedEvent(ptrev, dev, grab->grabtype); in DeliverTouchEmulatedEvent()
1475 if (devgrab->grabtype != XI2 || devgrab->type != XI_TouchBegin) in DeliverTouchEmulatedEvent()
1562 (dev->deviceGrab.grab->grabtype == CORE || in ProcessTouchEvent()
1563 dev->deviceGrab.grab->grabtype == XI || in ProcessTouchEvent()
2203 if (param->grabtype != CORE && in CheckGrabValues()
2204 param->grabtype != XI && param->grabtype != XI2) { in CheckGrabValues()
2238 int button, GrabParameters *param, enum InputLevel grabtype, in GrabButton() argument
2279 if (grabtype == XI) in GrabButton()
2281 else if (grabtype == XI2) in GrabButton()
[all …]
H A Dungrdev.c105 (grab) && SameClient(grab, client) && grab->grabtype == XI) in ProcXUngrabDevice()
H A Dungrdevb.c138 temporaryGrab->grabtype = XI; in ProcXUngrabDeviceButton()
H A Dgrabdevk.c139 .grabtype = XI, in ProcXGrabDeviceKey()
H A Dgrabdevb.c141 .grabtype = XI, in ProcXGrabDeviceButton()
H A Dxipassivegrab.c149 param.grabtype = XI2; in ProcXIPassiveGrabDevice()
352 tempGrab->grabtype = XI2; in ProcXIPassiveUngrabDevice()
H A Dungrdevk.c145 temporaryGrab->grabtype = XI; in ProcXUngrabDeviceKey()
H A Dxigrabdev.c168 (grab) && SameClient(grab, client) && grab->grabtype == XI2) in ProcXIUngrabDevice()
/OK3568_Linux_fs/external/xserver/include/
H A Dexevents.h147 int grabtype; /* CORE, etc. */ member
H A Dinputstr.h201 enum InputLevel grabtype; member
/OK3568_Linux_fs/external/xserver/
H A DChangeLog58754 Use the grabtype to determine which type of event to send - all other events
58763 dix: don't attempt to deliver an event for a different grabtype
58780 Avoid erroneous detection of an unset grabtype as CORE
127932 Xi: fix wrong grabtype from ProcXGrabDevice.
127934 86077f0058ce88ee9b3df5d1ab854eeca43 switched from a boolean to a grabtype
128112 input: Add grabtype to GrabParameters.
129771 input: ensure various ProcUngrabKey/Buttons have the right grabtype set.
130416 input: replace GrabRec's coreGrab field with grabtype.