Searched refs:jump_table (Results 1 – 2 of 2) sorted by relevance
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/ |
D | SDL_dynapi.c | 61 jump_table.SDL_LogMessageV(category, SDL_LOG_PRIORITY_##prio, fmt, ap); \ 69 jump_table.SDL_vsnprintf(buf, sizeof (buf), fmt, ap); \ 71 return jump_table.SDL_SetError("%s", buf); \ 75 retval = jump_table.SDL_vsscanf(buf, fmt, ap); \ 81 retval = jump_table.SDL_vsnprintf(buf, maxlen, fmt, ap); \ 87 jump_table.SDL_LogMessageV(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, fmt, ap); \ 92 jump_table.SDL_LogMessageV(category, priority, fmt, ap); \ 127 static SDL_DYNAPI_jump_table jump_table = { variable 138 ret jump_table.fn args; \ 153 rc fn params { ret jump_table.fn args; } [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/docs/ |
D | README-dynapi.md | 40 return jump_table.SDL_Init(flags); 46 What is jump_table.SDL_init()? Eventually, that's a function pointer of the real 53 return jump_table.SDL_Init(flags); 56 SDL_InitDynamicAPI() fills in jump_table with all the actual SDL function
|