Searched refs:time (Results 1 - 25 of 1046) sorted by relevance

1234567891011>>

/xsrc/external/mit/xmag/dist/
H A DCutPaste.h29 extern void SWGrabSelection ( Widget w, Time time );
30 extern void SWRequestSelection ( Widget w, Time time );
/xsrc/external/mit/libX11/dist/src/
H A DUngrabKbd.c35 Time time)
40 GetResReq(UngrabKeyboard, time, req);
33 XUngrabKeyboard(register Display * dpy,Time time) argument
H A DUngrabPtr.c35 Time time)
40 GetResReq(UngrabPointer, time, req);
33 XUngrabPointer(register Display * dpy,Time time) argument
H A DAllowEv.c36 Time time)
44 req->time = time;
33 XAllowEvents(register Display * dpy,int mode,Time time) argument
H A DChActPGb.c37 Time time)
45 req->time = time;
33 XChangeActivePointerGrab(register Display * dpy,unsigned int event_mask,Cursor curs,Time time) argument
H A DSetIFocus.c37 Time time)
45 req->time = time;
33 XSetInputFocus(register Display * dpy,Window focus,int revert_to,Time time) argument
H A DSetSOwner.c37 Time time)
45 req->time = time;
33 XSetSelectionOwner(register Display * dpy,Atom selection,Window owner,Time time) argument
H A DConvSel.c39 Time time)
49 req->time = time;
33 XConvertSelection(register Display * dpy,Atom selection,Atom target,Atom property,Window requestor,Time time) argument
H A DGrKeybd.c37 Time time)
48 req->time = time;
31 XGrabKeyboard(register Display * dpy,Window window,Bool ownerEvents,int pointerMode,int keyboardMode,Time time) argument
/xsrc/external/mit/xorg-server.old/dist/Xi/
H A Dallowev.c80 swapl(&stuff->time, n);
93 TimeStamp time; local in function:ProcXAllowDeviceEvents
103 time = ClientTimeToServerTime(stuff->time);
107 AllowSome(client, time, thisdev, NOT_GRABBED);
110 AllowSome(client, time, thisdev, FREEZE_NEXT_EVENT);
113 AllowSome(client, time, thisdev, THAWED);
116 AllowSome(client, time, thisdev, THAW_OTHERS);
119 AllowSome(client, time, thisdev, FREEZE_BOTH_NEXT_EVENT);
122 AllowSome(client, time, thisde
[all...]
H A Dxiallowev.c54 swapl(&stuff->time, n);
62 TimeStamp time; local in function:ProcXIAllowEvents
73 time = ClientTimeToServerTime(stuff->time);
77 AllowSome(client, time, dev, NOT_GRABBED);
80 AllowSome(client, time, dev, FREEZE_NEXT_EVENT);
83 AllowSome(client, time, dev, THAWED);
87 AllowSome(client, time, dev, THAW_OTHERS);
91 AllowSome(client, time, dev, FREEZE_BOTH_NEXT_EVENT);
95 AllowSome(client, time, de
[all...]
H A Dungrdev.c78 swapl(&stuff->time, n);
93 TimeStamp time; local in function:ProcXUngrabDevice
104 time = ClientTimeToServerTime(stuff->time);
105 if ((CompareTimeStamps(time, currentTime) != LATER) &&
106 (CompareTimeStamps(time, dev->deviceGrab.grabTime) != EARLIER) &&
/xsrc/external/mit/xorg-server/dist/Xi/
H A Dallowev.c78 swapl(&stuff->time);
91 TimeStamp time; local in function:ProcXAllowDeviceEvents
101 time = ClientTimeToServerTime(stuff->time);
105 AllowSome(client, time, thisdev, NOT_GRABBED);
108 AllowSome(client, time, thisdev, FREEZE_NEXT_EVENT);
111 AllowSome(client, time, thisdev, THAWED);
114 AllowSome(client, time, thisdev, THAW_OTHERS);
117 AllowSome(client, time, thisdev, FREEZE_BOTH_NEXT_EVENT);
120 AllowSome(client, time, thisde
[all...]
H A Dungrdev.c76 swapl(&stuff->time);
91 TimeStamp time; local in function:ProcXUngrabDevice
102 time = ClientTimeToServerTime(stuff->time);
103 if ((CompareTimeStamps(time, currentTime) != LATER) &&
104 (CompareTimeStamps(time, dev->deviceGrab.grabTime) != EARLIER) &&
H A Dxiallowev.c55 swapl(&stuff->time);
70 TimeStamp time; local in function:ProcXIAllowEvents
93 time = ClientTimeToServerTime(stuff->time);
97 AllowSome(client, time, dev, NOT_GRABBED);
100 AllowSome(client, time, dev, FREEZE_NEXT_EVENT);
103 AllowSome(client, time, dev, THAWED);
107 AllowSome(client, time, dev, THAW_OTHERS);
111 AllowSome(client, time, dev, FREEZE_BOTH_NEXT_EVENT);
115 AllowSome(client, time, de
[all...]
/xsrc/external/mit/libXt/dist/src/
H A DClickTime.c81 XtSetMultiClickTime(Display *dpy, int time) argument
86 _XtGetPerDisplay(dpy)->multi_click_time = time;
/xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
H A Dglut_swap.c62 float time = 0.001 * (t - __glutSwapTime); local in function:glutSwapBuffers
63 float fps = (float) __glutSwapCount / time;
65 __glutSwapCount, time, fps);
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/input/
H A Ddmxmotion.h48 unsigned long time);
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Dos_time.c30 * OS independent time-manipulation functions.
44 # include <time.h> /* timeval */
45 # include <sys/time.h> /* timeval */
99 struct timespec time; local in function:os_time_sleep
100 time.tv_sec = usecs / 1000000;
101 time.tv_nsec = (usecs % 1000000) * 1000;
102 while (clock_nanosleep(CLOCK_MONOTONIC, 0, &time, &time) == EINTR);
123 int64_t time, abs_timeout; local in function:os_time_get_absolute_timeout
129 time
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dos_time.c30 * OS independent time-manipulation functions.
42 # include <time.h> /* timeval */
43 # include <sys/time.h> /* timeval */
96 struct timespec time; local in function:os_time_sleep
97 time.tv_sec = usecs / 1000000;
98 time.tv_nsec = (usecs % 1000000) * 1000;
99 while (clock_nanosleep(CLOCK_MONOTONIC, 0, &time, &time) == EINTR);
120 int64_t time, abs_timeout; local in function:os_time_get_absolute_timeout
126 time
[all...]
/xsrc/external/mit/libXi/dist/src/
H A DXAllowDv.c68 Time time)
82 req->time = time;
64 XAllowDeviceEvents(register Display * dpy,XDevice * dev,int event_mode,Time time) argument
H A DXGtFocus.c69 Time *time)
87 *time = rep.time;
64 XGetDeviceFocus(register Display * dpy,XDevice * dev,Window * focus,int * revert_to,Time * time) argument
H A DXISetDevFocus.c37 XISetFocus(Display *dpy, int deviceid, Window focus, Time time) argument
52 req->time = time;
H A DXStFocus.c69 Time time)
84 req->time = time;
64 XSetDeviceFocus(register Display * dpy,XDevice * dev,Window focus,int revert_to,Time time) argument
H A DXUngrDev.c67 Time time)
81 req->time = time;
64 XUngrabDevice(register Display * dpy,XDevice * dev,Time time) argument

Completed in 14 milliseconds

1234567891011>>