OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:timerID
(Results
1 - 2
of
2
) sorted by null
/external/qemu/distrib/sdl-1.2.15/src/timer/win32/
SDL_systimer.c
113
static UINT
timerID
= 0;
133
timerID
= timeSetEvent(TIMER_RESOLUTION,1,HandleAlarm,0,TIME_PERIODIC);
134
if ( !
timerID
) {
143
if (
timerID
) {
144
timeKillEvent(
timerID
);
/external/qemu/distrib/sdl-1.2.15/src/timer/wince/
SDL_systimer.c
149
static UINT
timerID
= 0;
169
timerID
= timeSetEvent(TIMER_RESOLUTION,1,HandleAlarm,0,TIME_PERIODIC);
170
if ( !
timerID
) {
179
if (
timerID
) {
180
timeKillEvent(
timerID
);
Completed in 36 milliseconds