Lines Matching refs:xf86Info
124 if (xf86Info.lastEventTime == 0) { in TimeSinceLastInputEvent()
125 xf86Info.lastEventTime = GetTimeInMillis(); in TimeSinceLastInputEvent()
127 return GetTimeInMillis() - xf86Info.lastEventTime; in TimeSinceLastInputEvent()
137 xf86Info.lastEventTime = GetTimeInMillis(); in SetTimeSinceLastInputEvent()
156 xf86SetViewport(xf86Info.currentScreen, x, y); in ProcessInputEvents()
169 if (!xf86Info.dontZap) { in xf86ProcessActionEvent()
178 if (!xf86Info.dontZoom) in xf86ProcessActionEvent()
179 xf86ZoomViewport(xf86Info.currentScreen, 1); in xf86ProcessActionEvent()
182 if (!xf86Info.dontZoom) in xf86ProcessActionEvent()
183 xf86ZoomViewport(xf86Info.currentScreen, -1); in xf86ProcessActionEvent()
186 if (!xf86Info.dontVTSwitch && arg) { in xf86ProcessActionEvent()
189 if (vtno != xf86Info.vtno) { in xf86ProcessActionEvent()
192 xf86Info.vtno, vtno, strerror(errno)); in xf86ProcessActionEvent()
198 if (!xf86Info.dontVTSwitch) { in xf86ProcessActionEvent()
199 if (!xf86VTActivate(xf86Info.vtno + 1)) { in xf86ProcessActionEvent()
205 xf86Info.vtno, strerror(errno)); in xf86ProcessActionEvent()
211 if (!xf86Info.dontVTSwitch && xf86Info.vtno > 0) { in xf86ProcessActionEvent()
212 if (!xf86VTActivate(xf86Info.vtno - 1)) { in xf86ProcessActionEvent()
215 xf86Info.vtno, strerror(errno)); in xf86ProcessActionEvent()
607 handler = xf86AddGeneralHandler(xf86Info.consoleFd, proc, data); in xf86SetConsoleHandler()