Home
last modified time | relevance | path

Searched refs:dso (Results 1 – 11 of 11) sorted by relevance

/frameworks/native/opengl/libs/EGL/
DLoader.cpp77 static int do_android_unload_sphal_library(void* dso) { in do_android_unload_sphal_library() argument
79 return android_unload_sphal_library(dso); in do_android_unload_sphal_library()
84 dso[0] = gles; in driver_t()
85 for (size_t i=1 ; i<NELEM(dso) ; i++) in driver_t()
86 dso[i] = nullptr; in driver_t()
91 for (size_t i=0 ; i<NELEM(dso) ; i++) { in ~driver_t()
92 if (dso[i]) { in ~driver_t()
93 dlclose(dso[i]); in ~driver_t()
94 dso[i] = nullptr; in ~driver_t()
103 dso[0] = hnd; in set()
[all …]
DLoader.h41 void* dso[3]; member
59 void initialize_api(void* dso, egl_connection_t* cnx, uint32_t mask);
60 void init_angle_backend(void* dso, egl_connection_t* cnx);
62 static __attribute__((noinline)) void init_api(void* dso, const char* const* api,
Degldefs.h40 : dso(nullptr), in egl_connection_t()
61 void* dso; member
Degl.cpp138 cnx->dso = loader.open(cnx); in egl_init_drivers_locked()
141 if (cnx->dso) { in egl_init_drivers_locked()
148 return cnx->dso ? EGL_TRUE : EGL_FALSE; in egl_init_drivers_locked()
Degl_platform_entries.cpp317 if (cnx->dso) { in eglGetConfigsImpl()
336 if (!cnx->dso) return EGL_FALSE; in eglChooseConfigImpl()
1096 if (!cnx->dso) return setError(EGL_BAD_CONTEXT, (EGLBoolean)EGL_FALSE); in eglWaitGLImpl()
1103 if (!cnx->dso) return setError(EGL_BAD_CONTEXT, (EGLBoolean)EGL_FALSE); in eglWaitNativeImpl()
1111 if (cnx->dso) { in eglGetErrorImpl()
1183 if (cnx->dso && cnx->egl.eglGetProcAddress) { in eglGetProcAddressImpl()
1508 if (cnx->dso && cnx->egl.eglSwapInterval) { in eglSwapIntervalImpl()
1521 if (!cnx->dso) return setError(EGL_BAD_CONTEXT, (EGLBoolean)EGL_FALSE); in eglWaitClientImpl()
1536 if (cnx->dso && cnx->egl.eglBindAPI) { in eglBindAPIImpl()
1544 if (cnx->dso && cnx->egl.eglQueryAPI) { in eglQueryAPIImpl()
[all …]
Degl_display.cpp191 if (cnx->dso) { in getPlatformDisplay()
274 if (cnx->dso) { in initialize()
421 if (cnx->dso && disp.state == egl_display_t::INITIALIZED) { in terminate()
548 if ((*outCnx)->dso == nullptr) { in validate_display_connection()
Degl_cache.cpp75 if (cnx->dso && cnx->major >= 0 && cnx->minor >= 0) { in initialize()
/frameworks/compile/mclinker/include/mcld/Config/
DLinkers.def.in12 // macro with a single parameter (the name of the target whose exe/dso can be
DLinkers.def.cmake12 // macro with a single parameter (the name of the target whose exe/dso can be
DLinkers.def12 // macro with a single parameter (the name of the target whose exe/dso can be
/frameworks/native/vulkan/libvulkan/
Ddriver.cpp209 hmi->dso = so; in LoadDriver()
320 android_unload_sphal_library(hal_.dev_->common.module->dso); in UnloadBuiltinDriver()