/third_party/flutter/skia/third_party/externals/sdl/src/thread/generic/ |
D | SDL_syssem.c | 32 SDL_sem * 36 return (SDL_sem *) 0; in SDL_CreateSemaphore() 40 SDL_DestroySemaphore(SDL_sem * sem) in SDL_DestroySemaphore() 45 SDL_SemTryWait(SDL_sem * sem) in SDL_SemTryWait() 51 SDL_SemWaitTimeout(SDL_sem * sem, Uint32 timeout) in SDL_SemWaitTimeout() 57 SDL_SemWait(SDL_sem * sem) in SDL_SemWait() 63 SDL_SemValue(SDL_sem * sem) in SDL_SemValue() 69 SDL_SemPost(SDL_sem * sem) in SDL_SemPost() 84 SDL_sem * 87 SDL_sem *sem; in SDL_CreateSemaphore() [all …]
|
D | SDL_syscond.c | 36 SDL_sem *wait_sem; 37 SDL_sem *wait_done;
|
D | SDL_sysmutex.c | 33 SDL_sem *sem;
|
/third_party/flutter/skia/third_party/externals/sdl/src/thread/psp/ |
D | SDL_syssem.c | 42 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value) in SDL_CreateSemaphore() 44 SDL_sem *sem; in SDL_CreateSemaphore() 46 sem = (SDL_sem *) malloc(sizeof(*sem)); in SDL_CreateSemaphore() 63 void SDL_DestroySemaphore(SDL_sem *sem) in SDL_DestroySemaphore() 79 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) in SDL_SemWaitTimeout() 115 int SDL_SemTryWait(SDL_sem *sem) in SDL_SemTryWait() 120 int SDL_SemWait(SDL_sem *sem) in SDL_SemWait() 126 Uint32 SDL_SemValue(SDL_sem *sem) in SDL_SemValue() 142 int SDL_SemPost(SDL_sem *sem) in SDL_SemPost()
|
D | SDL_syscond.c | 38 SDL_sem *wait_sem; 39 SDL_sem *wait_done;
|
D | SDL_sysmutex.c | 35 SDL_sem *sem;
|
/third_party/flutter/skia/third_party/externals/sdl/src/thread/pthread/ |
D | SDL_syssem.c | 48 SDL_sem * 51 SDL_sem *sem = (SDL_sem *) SDL_malloc(sizeof(SDL_sem)); in SDL_CreateSemaphore() 65 SDL_DestroySemaphore(SDL_sem * sem) in SDL_DestroySemaphore() 74 SDL_SemTryWait(SDL_sem * sem) in SDL_SemTryWait() 89 SDL_SemWait(SDL_sem * sem) in SDL_SemWait() 105 SDL_SemWaitTimeout(SDL_sem * sem, Uint32 timeout) in SDL_SemWaitTimeout() 180 SDL_SemValue(SDL_sem * sem) in SDL_SemValue() 193 SDL_SemPost(SDL_sem * sem) in SDL_SemPost()
|
/third_party/flutter/skia/third_party/externals/sdl/src/thread/windows/ |
D | SDL_syssem.c | 39 SDL_sem * 42 SDL_sem *sem; in SDL_CreateSemaphore() 45 sem = (SDL_sem *) SDL_malloc(sizeof(*sem)); in SDL_CreateSemaphore() 67 SDL_DestroySemaphore(SDL_sem * sem) in SDL_DestroySemaphore() 79 SDL_SemWaitTimeout(SDL_sem * sem, Uint32 timeout) 113 SDL_SemTryWait(SDL_sem * sem) 119 SDL_SemWait(SDL_sem * sem) 126 SDL_SemValue(SDL_sem * sem) 136 SDL_SemPost(SDL_sem * sem)
|
/third_party/flutter/skia/third_party/externals/sdl/include/ |
D | SDL_mutex.h | 107 typedef struct SDL_semaphore SDL_sem; typedef 112 extern DECLSPEC SDL_sem *SDLCALL SDL_CreateSemaphore(Uint32 initial_value); 117 extern DECLSPEC void SDLCALL SDL_DestroySemaphore(SDL_sem * sem); 124 extern DECLSPEC int SDLCALL SDL_SemWait(SDL_sem * sem); 132 extern DECLSPEC int SDLCALL SDL_SemTryWait(SDL_sem * sem); 143 extern DECLSPEC int SDLCALL SDL_SemWaitTimeout(SDL_sem * sem, Uint32 ms); 150 extern DECLSPEC int SDLCALL SDL_SemPost(SDL_sem * sem); 155 extern DECLSPEC Uint32 SDLCALL SDL_SemValue(SDL_sem * sem);
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/android/ |
D | SDL_androidvideo.h | 43 extern SDL_sem *Android_PauseSem, *Android_ResumeSem;
|
D | SDL_androidvideo.c | 70 SDL_sem *Android_PauseSem = NULL, *Android_ResumeSem = NULL;
|
/third_party/flutter/skia/third_party/externals/sdl/src/audio/coreaudio/ |
D | SDL_coreaudio.h | 55 SDL_sem *ready_semaphore;
|
/third_party/flutter/skia/third_party/externals/sdl/test/ |
D | testsem.c | 23 static SDL_sem *sem;
|
D | testatomic.c | 114 static SDL_sem *threadDone; 471 static SDL_sem *writersDone; 472 static SDL_sem *readersDone;
|
/third_party/flutter/skia/third_party/externals/sdl/src/audio/alsa/ |
D | SDL_alsa_audio.c | 775 SDL_sem *first_run_semaphore = (SDL_sem *) arg; in ALSA_HotplugThread() 926 SDL_sem *semaphore = SDL_CreateSemaphore(0); in ALSA_DetectDevices()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/ |
D | SDL_cocoamousetap.m | 45 SDL_sem *runloopStartedSemaphore; 137 SDL_SemPost((SDL_sem*)info);
|
/third_party/flutter/skia/third_party/externals/sdl/src/joystick/psp/ |
D | SDL_sysjoystick.c | 43 static SDL_sem *pad_sem = NULL;
|
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/ |
D | SDL_dynapi_procs.h | 299 SDL_DYNAPI_PROC(SDL_sem*,SDL_CreateSemaphore,(Uint32 a),(a),return) 300 SDL_DYNAPI_PROC(void,SDL_DestroySemaphore,(SDL_sem *a),(a),) 301 SDL_DYNAPI_PROC(int,SDL_SemWait,(SDL_sem *a),(a),return) 302 SDL_DYNAPI_PROC(int,SDL_SemTryWait,(SDL_sem *a),(a),return) 303 SDL_DYNAPI_PROC(int,SDL_SemWaitTimeout,(SDL_sem *a, Uint32 b),(a,b),return) 304 SDL_DYNAPI_PROC(int,SDL_SemPost,(SDL_sem *a),(a),return) 305 SDL_DYNAPI_PROC(Uint32,SDL_SemValue,(SDL_sem *a),(a),return)
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/psp/ |
D | SDL_pspevents.c | 49 static SDL_sem *event_sem = NULL;
|
/third_party/flutter/skia/third_party/externals/sdl/src/timer/ |
D | SDL_timer.c | 62 SDL_sem *sem;
|
/third_party/flutter/skia/third_party/externals/sdl/src/audio/xaudio2/ |
D | SDL_xaudio2.c | 122 SDL_sem * semaphore;
|
/third_party/flutter/skia/third_party/externals/sdl/src/thread/ |
D | SDL_thread.c | 261 SDL_sem *wait;
|