OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SDL_CreateThread
(Results
1 - 11
of
11
) sorted by null
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_thread.h
66
* The function passed to
SDL_CreateThread
().
76
* creates a new thread for the calling process with the
SDL_CreateThread
()
107
SDL_CreateThread
(SDL_ThreadFunction fn, const char *name, void *data,
114
#if defined(
SDL_CreateThread
) && SDL_DYNAMIC_API
115
#undef
SDL_CreateThread
116
#define
SDL_CreateThread
(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
118
#define
SDL_CreateThread
(fn, name, data)
SDL_CreateThread
(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
142
SDL_CreateThread
(SDL_ThreadFunction fn, const char *name, void *data);
147
* Get the thread name, as it was specified in
SDL_CreateThread
()
[
all
...]
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_thread.h
66
* The function passed to
SDL_CreateThread
().
76
* creates a new thread for the calling process with the
SDL_CreateThread
()
107
SDL_CreateThread
(SDL_ThreadFunction fn, const char *name, void *data,
114
#if defined(
SDL_CreateThread
) && SDL_DYNAMIC_API
115
#undef
SDL_CreateThread
116
#define
SDL_CreateThread
(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
118
#define
SDL_CreateThread
(fn, name, data)
SDL_CreateThread
(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
142
SDL_CreateThread
(SDL_ThreadFunction fn, const char *name, void *data);
147
* Get the thread name, as it was specified in
SDL_CreateThread
()
[
all
...]
/prebuilts/misc/windows/sdl2/include/
SDL_thread.h
66
* The function passed to
SDL_CreateThread
().
76
* creates a new thread for the calling process with the
SDL_CreateThread
()
107
SDL_CreateThread
(SDL_ThreadFunction fn, const char *name, void *data,
114
#if defined(
SDL_CreateThread
) && SDL_DYNAMIC_API
115
#undef
SDL_CreateThread
116
#define
SDL_CreateThread
(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
118
#define
SDL_CreateThread
(fn, name, data)
SDL_CreateThread
(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
142
SDL_CreateThread
(SDL_ThreadFunction fn, const char *name, void *data);
147
* Get the thread name, as it was specified in
SDL_CreateThread
()
[
all
...]
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_thread.h
66
* The function passed to
SDL_CreateThread
().
76
* creates a new thread for the calling process with the
SDL_CreateThread
()
107
SDL_CreateThread
(SDL_ThreadFunction fn, const char *name, void *data,
114
#if defined(
SDL_CreateThread
) && SDL_DYNAMIC_API
115
#undef
SDL_CreateThread
116
#define
SDL_CreateThread
(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
118
#define
SDL_CreateThread
(fn, name, data)
SDL_CreateThread
(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
142
SDL_CreateThread
(SDL_ThreadFunction fn, const char *name, void *data);
147
* Get the thread name, as it was specified in
SDL_CreateThread
()
[
all
...]
/prebuilts/misc/windows/sdl2/test/
testthread.c
76
thread =
SDL_CreateThread
(ThreadFunc, "One", "#1");
90
thread =
SDL_CreateThread
(ThreadFunc, "Two", "#2");
torturethread.c
58
sub_threads[i] =
SDL_CreateThread
(SubThreadFunc, name, &flags[i]);
97
threads[i] =
SDL_CreateThread
(ThreadFunc, name, (void*) (uintptr_t) i);
testerror.c
64
thread =
SDL_CreateThread
(ThreadFunc, NULL, "#1");
testlock.c
121
if ((threads[i] =
SDL_CreateThread
(Run, name, NULL)) == NULL)
testmessage.c
148
SDL_Thread* thread =
SDL_CreateThread
(&button_messagebox, "MessageBox", (void*)eventNumber);
testsem.c
111
threads[i] =
SDL_CreateThread
(ThreadFunc, name, (void *) i);
testatomic.c
146
SDL_CreateThread
(adder, "Adder", NULL);
622
SDL_CreateThread
(FIFO_Watcher, "FIFOWatcher", &queue);
635
SDL_CreateThread
(FIFO_Reader, name, &readerData[i]);
648
SDL_CreateThread
(FIFO_Writer, name, &writerData[i]);
Completed in 177 milliseconds