Home
last modified time | relevance | path

Searched refs:dll_handle (Results 1 – 7 of 7) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/video/photon/
DSDL_ph_gl.c111 if (this->gl_config.dll_handle!=NULL) in ph_GL_LoadLibrary()
124 this->gl_config.dll_handle = handle; in ph_GL_LoadLibrary()
143 if (this->gl_config.dll_handle==NULL) in ph_GL_GetProcAddress()
146 if (this->gl_config.dll_handle==NULL) in ph_GL_GetProcAddress()
155 function=dlsym(this->gl_config.dll_handle, proc); in ph_GL_GetProcAddress()
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
DSDL_sysvideo.cc635 if (_this->gl_config.dll_handle == NULL) { in BE_GL_LoadLibrary()
641 _this->gl_config.dll_handle = (void*)cookie; in BE_GL_LoadLibrary()
653 if (_this->gl_config.dll_handle == NULL) { in BE_GL_LoadLibrary()
675 if (_this->gl_config.dll_handle != NULL) { in BE_GL_LoadLibrary()
678 _this->gl_config.dll_handle = NULL; in BE_GL_LoadLibrary()
687 if (_this->gl_config.dll_handle != NULL) { in BE_GL_GetProcAddress()
690 …if ((err = get_image_symbol((image_id)_this->gl_config.dll_handle, proc, B_SYMBOL_TYPE_ANY, &locat… in BE_GL_GetProcAddress()
822 if (_this->gl_config.dll_handle != NULL) in BE_VideoQuit()
823 unload_add_on((image_id)_this->gl_config.dll_handle); in BE_VideoQuit()
/external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
DSDL_atarigl.c221 this->gl_config.dll_handle = handle; in SDL_AtariGL_LoadLibrary()
243 if (this->gl_config.dll_handle) { in SDL_AtariGL_GetProcAddress()
244 func = SDL_LoadFunction(this->gl_config.dll_handle, (void *)proc); in SDL_AtariGL_GetProcAddress()
319 if (this->gl_config.dll_handle) { in SDL_AtariGL_MakeCurrent()
357 if (this->gl_config.dll_handle) { in SDL_AtariGL_SwapBuffers()
395 if (this->gl_config.dll_handle) { in SDL_AtariGL_UnloadLibrary()
396 SDL_UnloadObject(this->gl_config.dll_handle); in SDL_AtariGL_UnloadLibrary()
397 this->gl_config.dll_handle = NULL; in SDL_AtariGL_UnloadLibrary()
416 if (this->gl_config.dll_handle) { in InitNew()
523 if (this->gl_config.dll_handle) { in InitOld()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/x11/
DSDL_x11gl.c445 GL_UnloadObject(this->gl_config.dll_handle); in X11_GL_UnloadLibrary()
457 this->gl_config.dll_handle = NULL; in X11_GL_UnloadLibrary()
530 this->gl_config.dll_handle = handle; in X11_GL_LoadLibrary()
545 handle = this->gl_config.dll_handle; in X11_GL_GetProcAddress()
/external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
DSDL_wingl.c567 FreeLibrary((HMODULE)this->gl_config.dll_handle); in WIN_GL_UnloadLibrary()
577 this->gl_config.dll_handle = NULL; in WIN_GL_UnloadLibrary()
628 this->gl_config.dll_handle = handle; in WIN_GL_LoadLibrary()
642 func = GetProcAddress(this->gl_config.dll_handle, proc); in WIN_GL_GetProcAddress()
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_sysvideo.h314 void* dll_handle; member
DSDL_video.c219 video->gl_config.dll_handle = NULL; in SDL_VideoInit()