Home
last modified time | relevance | path

Searched refs:SDL_RWops (Results 1 – 25 of 31) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_rwops.h52 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 …]
DSDL_gesture.h61 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);
DSDL_surface.h178 extern DECLSPEC SDL_Surface *SDLCALL SDL_LoadBMP_RW(SDL_RWops * src,
202 (SDL_Surface * surface, SDL_RWops * dst, int freedst);
DSDL_gamecontroller.h120 extern DECLSPEC int SDLCALL SDL_GameControllerAddMappingsFromRW( SDL_RWops * rw, int freerw );
DSDL_audio.h415 extern DECLSPEC SDL_AudioSpec *SDLCALL SDL_LoadWAV_RW(SDL_RWops * src,
/third_party/flutter/skia/third_party/externals/sdl/src/file/
DSDL_rwops.c61 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/
DSDL_android.h52 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);
DSDL_android.c795 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/
DSDL_visualtest_rwhelper.h50 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/
Dtestautomation_rwops.c95 _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 …]
Dtestfile.c51 rwops_error_quit(unsigned line, SDL_RWops * rwops) in rwops_error_quit()
68 SDL_RWops *rwops = NULL; in main()
Dtestresample.c26 SDL_RWops *io = NULL; in main()
Dteststreaming.c130 SDL_RWops *handle; in main()
Dtestoverlay2.c327 SDL_RWops *handle; in main()
/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/
Drwhelper.c25 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()
Dscreenshot.c18 SDL_RWops* rw; in SDLVisualTest_VerifyScreenshots()
88 SDL_RWops* testrw; in SDLVisualTest_VerifyScreenshots()
Dsut_configparser.c24 SDL_RWops* rw; in SDLVisualTest_ParseSUTConfig()
Dharness_argparser.c204 SDL_RWops* rw; in ParseConfig()
Daction_configparser.c265 SDL_RWops* rw; in SDLVisualTest_ParseActionConfig()
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/
DSDL_dynapi_procs.h58 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/
DSDL_diskaudio.h35 SDL_RWops *io;
/third_party/flutter/skia/third_party/externals/sdl/docs/
DREADME-gesture.md36 …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/
DSDL_gesture.c116 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/
DSDL_wave.c29 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/
DSDL_bmp.c87 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()

12