HomeSort by relevance Sort by last modified time
    Searched defs:SDL_CreateThread (Results 1 - 7 of 7) sorted by null

  /external/qemu/distrib/sdl-1.2.15/include/
SDL_thread.h 52 * creates a new thread for the calling process with the SDL_CreateThread()
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
81 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread)
83 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL)
85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_thread.h 52 * creates a new thread for the calling process with the SDL_CreateThread()
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
81 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread)
83 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL)
85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_thread.h 52 * creates a new thread for the calling process with the SDL_CreateThread()
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
81 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread)
83 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL)
85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_thread.h 52 * creates a new thread for the calling process with the SDL_CreateThread()
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
81 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread)
83 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL)
85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_audio.c 552 #undef SDL_CreateThread
553 audio->thread = SDL_CreateThread(SDL_RunAudio, audio, NULL, NULL);
555 audio->thread = SDL_CreateThread(SDL_RunAudio, audio);
  /external/qemu/distrib/sdl-1.2.15/src/thread/
SDL_thread.c 208 #undef SDL_CreateThread
209 DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
211 DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data)
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_events.c 173 #undef SDL_CreateThread
174 SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL, NULL, NULL);
176 SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL);

Completed in 7526 milliseconds