/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_thread.h | 117 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data, 131 #if defined(SDL_CreateThread) && SDL_DYNAMIC_API 132 #undef SDL_CreateThread 133 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBegin… macro 137 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThrea… macro 165 SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data, 173 #if defined(SDL_CreateThread) && SDL_DYNAMIC_API 174 #undef SDL_CreateThread 175 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBegin… macro 179 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThrea… macro [all …]
|
/AliOS-Things-master/components/SDL2/src/thread/ |
A D | SDL_thread.c | 293 #ifdef SDL_CreateThread 294 #undef SDL_CreateThread 298 #define SDL_CreateThread SDL_CreateThread_REAL macro 359 SDL_CreateThread(int (SDLCALL * fn) (void *), in SDL_CreateThread() function 365 SDL_CreateThread(int (SDLCALL * fn) (void *), in SDL_CreateThread()
|
/AliOS-Things-master/components/SDL2/test/ |
A D | testthread.c | 107 thread = SDL_CreateThread(ThreadFunc, "One", "#1"); in main() 121 thread = SDL_CreateThread(ThreadFunc, "Two", "#2"); in main()
|
A D | torturethread.c | 57 sub_threads[i] = SDL_CreateThread(SubThreadFunc, name, &flags[i]); in ThreadFunc() 96 threads[i] = SDL_CreateThread(ThreadFunc, name, (void*) (uintptr_t) i); in main()
|
A D | testerror.c | 62 thread = SDL_CreateThread(ThreadFunc, NULL, "#1"); in main()
|
A D | testsem.c | 110 threads[i] = SDL_CreateThread(ThreadFunc, name, (void *) i); in main()
|
A D | testlock.c | 121 if ((threads[i] = SDL_CreateThread(Run, name, NULL)) == NULL) in main()
|
A D | testatomic.c | 146 SDL_CreateThread(adder, "Adder", NULL); in runAdder() 623 SDL_CreateThread(FIFO_Watcher, "FIFOWatcher", &queue); in RunFIFOTest() 636 SDL_CreateThread(FIFO_Reader, name, &readerData[i]); in RunFIFOTest() 649 SDL_CreateThread(FIFO_Writer, name, &writerData[i]); in RunFIFOTest()
|
A D | testmessage.c | 155 SDL_Thread* thread = SDL_CreateThread(&button_messagebox, "MessageBox", (void*)eventNumber); in main()
|
/AliOS-Things-master/components/SDL2/src/audio/alios/ |
A D | SDL_alios_audio.c | 91 ALSA_hotplug_thread = SDL_CreateThread(ALSA_HotplugThread, "SDLHotplugALSA", semaphore); in AOS_DetectDevices()
|
/AliOS-Things-master/components/SDL2/src/dynapi/ |
A D | SDL_dynapi_procs.h | 47 #ifdef SDL_CreateThread 48 #undef SDL_CreateThread 52 SDL_DYNAPI_PROC(SDL_Thread*,SDL_CreateThread,(SDL_ThreadFunction a, const char *b, void *c, pfnSDL_… 54 SDL_DYNAPI_PROC(SDL_Thread*,SDL_CreateThread,(SDL_ThreadFunction a, const char *b, void *c, pfnSDL_… 56 SDL_DYNAPI_PROC(SDL_Thread*,SDL_CreateThread,(SDL_ThreadFunction a, const char *b, void *c),(a,b,c)…
|
A D | SDL_dynapi_overrides.h | 41 #define SDL_CreateThread SDL_CreateThread_REAL macro
|
/AliOS-Things-master/components/SDL2/src/audio/alsa/ |
A D | SDL_alsa_audio.c | 948 ALSA_hotplug_thread = SDL_CreateThread(ALSA_HotplugThread, "SDLHotplugALSA", semaphore); in ALSA_DetectDevices()
|
/AliOS-Things-master/components/SDL2/docs/ |
A D | README-dynapi.md | 90 single thread initializes everything (although even SDL_CreateThread() goes
|
/AliOS-Things-master/components/SDL2/src/hidapi/libusb/ |
A D | hid.c | 1077 dev->thread = SDL_CreateThread(read_thread, NULL, dev); in hid_open_path()
|