Home
last modified time | relevance | path

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

/external/qemu/distrib/sdl-1.2.12/include/
DSDL_thread.h82 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL…
85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread) macro
87 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL) macro
89 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex) macro
92 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
/external/qemu/distrib/sdl-1.2.12/src/thread/
DSDL_thread.c206 #undef SDL_CreateThread
207 DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_Curren… in SDL_CreateThread() function
209 DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data) in SDL_CreateThread()
/external/qemu/distrib/sdl-1.2.12/src/main/macos/exports/
DSDL.x122 SDL_CreateThread
123 SDL_CreateThread
/external/qemu/distrib/sdl-1.2.12/src/events/
DSDL_events.c173 #undef SDL_CreateThread in SDL_StartEventThread()
174 SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL, NULL, NULL); in SDL_StartEventThread()
176 SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL); in SDL_StartEventThread()
/external/qemu/distrib/sdl-1.2.12/src/timer/dummy/
DSDL_systimer.c65 timer = SDL_CreateThread(RunTimer, NULL); in SDL_SYS_TimerInit()
/external/qemu/distrib/sdl-1.2.12/src/timer/dc/
DSDL_systimer.c74 timer = SDL_CreateThread(RunTimer, NULL); in SDL_SYS_TimerInit()
/external/qemu/distrib/sdl-1.2.12/src/timer/beos/
DSDL_systimer.c69 timer = SDL_CreateThread(RunTimer, NULL); in SDL_SYS_TimerInit()
/external/qemu/distrib/sdl-1.2.12/src/timer/epoc/
DSDL_systimer.cpp88 timer = SDL_CreateThread(RunTimer, NULL); in SDL_SYS_TimerInit()
/external/qemu/distrib/sdl-1.2.12/src/main/beos/
DSDL_BeApp.cc56 SDL_AppThread = SDL_CreateThread(StartBeApp, NULL); in SDL_InitBeApp()
/external/qemu/distrib/sdl-1.2.12/src/audio/
DSDL_audio.c552 #undef SDL_CreateThread in SDL_OpenAudio()
553 audio->thread = SDL_CreateThread(SDL_RunAudio, audio, NULL, NULL); in SDL_OpenAudio()
555 audio->thread = SDL_CreateThread(SDL_RunAudio, audio); in SDL_OpenAudio()
/external/qemu/distrib/sdl-1.2.12/src/timer/riscos/
DSDL_systimer.c205 timer = SDL_CreateThread(RunTimer, NULL); in SDL_SYS_TimerInit()
/external/qemu/distrib/sdl-1.2.12/src/timer/amigaos/
DSDL_systimer.c237 timer_thread = SDL_CreateThread(RunTimer, NULL); in SDL_SYS_TimerInit()
/external/qemu/distrib/sdl-1.2.12/src/timer/os2/
DSDL_systimer.c201 timer = SDL_CreateThread(RunTimer, NULL); in SDL_SYS_TimerInit()
/external/qemu/distrib/sdl-1.2.12/src/timer/unix/
DSDL_systimer.c212 timer = SDL_CreateThread(RunTimer, NULL); in SDL_SYS_TimerInit()
/external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
DSDL_thread.c190 SDL_Thread *SDL_CreateThread(int (*fn)(void *), void *data) in SDL_CreateThread() function
/external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
DCDPlayer.c549 SDL_CreateThread(RunCallBackThread, NULL); in CheckInit()
/external/qemu/distrib/sdl-1.2.12/src/video/quartz/
DSDL_QuartzVideo.m515 thread = SDL_CreateThread ((int (*)(void *))QZ_ThreadFlip, this);