/third_party/flutter/skia/third_party/externals/sdl/include/ |
D | SDL_rwops.h | 52 typedef struct SDL_RWops struct 57 Sint64 (SDLCALL * size) (struct SDL_RWops * context); 65 Sint64 (SDLCALL * seek) (struct SDL_RWops * context, Sint64 offset, 74 size_t (SDLCALL * read) (struct SDL_RWops * context, void *ptr, 83 size_t (SDLCALL * write) (struct SDL_RWops * context, const void *ptr, 91 int (SDLCALL * close) (struct SDL_RWops * context); argument 143 } SDL_RWops; argument 153 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFile(const char *file, 157 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFP(FILE * fp, 160 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFP(void * fp, [all …]
|
D | SDL_gesture.h | 61 extern DECLSPEC int SDLCALL SDL_SaveAllDollarTemplates(SDL_RWops *dst); 68 extern DECLSPEC int SDLCALL SDL_SaveDollarTemplate(SDL_GestureID gestureId,SDL_RWops *dst); 76 extern DECLSPEC int SDLCALL SDL_LoadDollarTemplates(SDL_TouchID touchId, SDL_RWops *src);
|
D | SDL_surface.h | 178 extern DECLSPEC SDL_Surface *SDLCALL SDL_LoadBMP_RW(SDL_RWops * src, 202 (SDL_Surface * surface, SDL_RWops * dst, int freedst);
|
D | SDL_gamecontroller.h | 120 extern DECLSPEC int SDLCALL SDL_GameControllerAddMappingsFromRW( SDL_RWops * rw, int freerw );
|
D | SDL_audio.h | 415 extern DECLSPEC SDL_AudioSpec *SDLCALL SDL_LoadWAV_RW(SDL_RWops * src,
|
/third_party/flutter/skia/third_party/externals/sdl/src/file/ |
D | SDL_rwops.c | 61 windows_file_open(SDL_RWops * context, const char *filename, const char *mode) in windows_file_open() 129 windows_file_size(SDL_RWops * context) in windows_file_size() 145 windows_file_seek(SDL_RWops * context, Sint64 offset, int whence) in windows_file_seek() 182 windows_file_read(SDL_RWops * context, void *ptr, size_t size, size_t maxnum) in windows_file_read() 236 windows_file_write(SDL_RWops * context, const void *ptr, size_t size, in windows_file_write() 277 windows_file_close(SDL_RWops * context) in windows_file_close() 298 stdio_size(SDL_RWops * context) in stdio_size() 313 stdio_seek(SDL_RWops * context, Sint64 offset, int whence) in stdio_seek() 336 stdio_read(SDL_RWops * context, void *ptr, size_t size, size_t maxnum) in stdio_read() 348 stdio_write(SDL_RWops * context, const void *ptr, size_t size, size_t num) in stdio_write() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/core/android/ |
D | SDL_android.h | 52 int Android_JNI_FileOpen(SDL_RWops* ctx, const char* fileName, const char* mode); 53 Sint64 Android_JNI_FileSize(SDL_RWops* ctx); 54 Sint64 Android_JNI_FileSeek(SDL_RWops* ctx, Sint64 offset, int whence); 55 size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer, size_t size, size_t maxnum); 56 size_t Android_JNI_FileWrite(SDL_RWops* ctx, const void* buffer, size_t size, size_t num); 57 int Android_JNI_FileClose(SDL_RWops* ctx);
|
D | SDL_android.c | 795 static int Internal_Android_JNI_FileOpen(SDL_RWops* ctx) in Internal_Android_JNI_FileOpen() 953 int Android_JNI_FileOpen(SDL_RWops* ctx, in Android_JNI_FileOpen() 983 size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer, in Android_JNI_FileRead() 1046 size_t Android_JNI_FileWrite(SDL_RWops* ctx, const void* buffer, in Android_JNI_FileWrite() 1053 static int Internal_Android_JNI_FileClose(SDL_RWops* ctx, SDL_bool release) in Internal_Android_JNI_FileClose() 1104 Sint64 Android_JNI_FileSize(SDL_RWops* ctx) in Android_JNI_FileSize() 1109 Sint64 Android_JNI_FileSeek(SDL_RWops* ctx, Sint64 offset, int whence) in Android_JNI_FileSeek() 1193 int Android_JNI_FileClose(SDL_RWops* ctx) in Android_JNI_FileClose()
|
/third_party/flutter/skia/third_party/externals/sdl/visualtest/include/ |
D | SDL_visualtest_rwhelper.h | 50 char SDLVisualTest_RWHelperReadChar(SDL_RWops* rw, 65 char* SDLVisualTest_RWHelperReadLine(SDL_RWops* rw, char* str, int size, 76 int SDLVisualTest_RWHelperCountNonEmptyLines(SDL_RWops* rw,
|
/third_party/flutter/skia/third_party/externals/sdl/test/ |
D | testautomation_rwops.c | 95 _testGenericRWopsValidations(SDL_RWops *rw, int write) in _testGenericRWopsValidations() 177 SDL_RWops *rwops; in rwops_testParamNegative() 225 SDL_RWops *rw; in rwops_testMem() 264 SDL_RWops *rw; in rwops_testConstMem() 300 SDL_RWops *rw; in rwops_testFileRead() 347 SDL_RWops *rw; in rwops_testFileWrite() 397 SDL_RWops *rw; in rwops_testFPRead() 447 SDL_RWops *rw; in rwops_testFPWrite() 494 SDL_RWops *rw = SDL_AllocRW(); in rwops_testAllocFree() 527 SDL_RWops* rwops_file; in rwops_testCompareRWFromMemWithRWFromFile() [all …]
|
D | testfile.c | 51 rwops_error_quit(unsigned line, SDL_RWops * rwops) in rwops_error_quit() 68 SDL_RWops *rwops = NULL; in main()
|
D | testresample.c | 26 SDL_RWops *io = NULL; in main()
|
D | teststreaming.c | 130 SDL_RWops *handle; in main()
|
D | testoverlay2.c | 327 SDL_RWops *handle; in main()
|
/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/ |
D | rwhelper.c | 25 SDLVisualTest_RWHelperReadChar(SDL_RWops* rw, SDLVisualTest_RWHelperBuffer* buffer) in SDLVisualTest_RWHelperReadChar() 43 SDLVisualTest_RWHelperReadLine(SDL_RWops* rw, char* str, int size, in SDLVisualTest_RWHelperReadLine() 111 SDLVisualTest_RWHelperCountNonEmptyLines(SDL_RWops* rw, in SDLVisualTest_RWHelperCountNonEmptyLines()
|
D | screenshot.c | 18 SDL_RWops* rw; in SDLVisualTest_VerifyScreenshots() 88 SDL_RWops* testrw; in SDLVisualTest_VerifyScreenshots()
|
D | sut_configparser.c | 24 SDL_RWops* rw; in SDLVisualTest_ParseSUTConfig()
|
D | harness_argparser.c | 204 SDL_RWops* rw; in ParseConfig()
|
D | action_configparser.c | 265 SDL_RWops* rw; in SDLVisualTest_ParseActionConfig()
|
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/ |
D | SDL_dynapi_procs.h | 58 SDL_DYNAPI_PROC(SDL_RWops*,SDL_RWFromFP,(FILE *a, SDL_bool b),(a,b),return) 60 SDL_DYNAPI_PROC(SDL_RWops*,SDL_RWFromFP,(void *a, SDL_bool b),(a,b),return) 121 SDL_DYNAPI_PROC(SDL_AudioSpec*,SDL_LoadWAV_RW,(SDL_RWops *a, int b, SDL_AudioSpec *c, Uint8 **d, Ui… 191 SDL_DYNAPI_PROC(int,SDL_SaveAllDollarTemplates,(SDL_RWops *a),(a),return) 192 SDL_DYNAPI_PROC(int,SDL_SaveDollarTemplate,(SDL_GestureID a, SDL_RWops *b),(a,b),return) 193 SDL_DYNAPI_PROC(int,SDL_LoadDollarTemplates,(SDL_TouchID a, SDL_RWops *b),(a,b),return) 386 SDL_DYNAPI_PROC(SDL_RWops*,SDL_RWFromFile,(const char *a, const char *b),(a,b),return) 387 SDL_DYNAPI_PROC(SDL_RWops*,SDL_RWFromMem,(void *a, int b),(a,b),return) 388 SDL_DYNAPI_PROC(SDL_RWops*,SDL_RWFromConstMem,(const void *a, int b),(a,b),return) 389 SDL_DYNAPI_PROC(SDL_RWops*,SDL_AllocRW,(void),(),return) [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/audio/disk/ |
D | SDL_diskaudio.h | 35 SDL_RWops *io;
|
/third_party/flutter/skia/third_party/externals/sdl/docs/ |
D | README-gesture.md | 36 …here gestureId is the id of the gesture you want to save, and dst is an SDL_RWops pointer to the f… 38 … loaded templates, call SDL_SaveAllDollarTemplates(dst) where dst is an SDL_RWops pointer to the f… 45 …he touch to load to (or -1 to load to all touch devices), and src is an SDL_RWops pointer to a ges…
|
/third_party/flutter/skia/third_party/externals/sdl/src/events/ |
D | SDL_gesture.c | 116 static int SaveTemplate(SDL_DollarTemplate *templ, SDL_RWops *dst) in SaveTemplate() 151 int SDL_SaveAllDollarTemplates(SDL_RWops *dst) in SDL_SaveAllDollarTemplates() 163 int SDL_SaveDollarTemplate(SDL_GestureID gestureId, SDL_RWops *dst) in SDL_SaveDollarTemplate() 221 int SDL_LoadDollarTemplates(SDL_TouchID touchId, SDL_RWops *src) in SDL_LoadDollarTemplates()
|
/third_party/flutter/skia/third_party/externals/sdl/src/audio/ |
D | SDL_wave.c | 29 static int ReadChunk(SDL_RWops * src, Chunk * chunk); 407 SDL_LoadWAV_RW(SDL_RWops * src, int freesrc, in SDL_LoadWAV_RW() 608 ReadChunk(SDL_RWops * src, Chunk * chunk) in ReadChunk()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/ |
D | SDL_bmp.c | 87 SDL_LoadBMP_RW(SDL_RWops * src, int freesrc) in SDL_LoadBMP_RW() 460 SDL_SaveBMP_RW(SDL_Surface * saveme, SDL_RWops * dst, int freedst) in SDL_SaveBMP_RW()
|