Home
last modified time | relevance | path

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

/frameworks/native/opengl/libs/EGL/
DLoader.cpp121 dso[0] = gles; in driver_t()
122 for (size_t i=1 ; i<NELEM(dso) ; i++) in driver_t()
123 dso[i] = 0; in driver_t()
128 for (size_t i=0 ; i<NELEM(dso) ; i++) { in ~driver_t()
129 if (dso[i]) { in ~driver_t()
130 dlclose(dso[i]); in ~driver_t()
131 dso[i] = 0; in ~driver_t()
140 dso[0] = hnd; in set()
143 dso[1] = hnd; in set()
146 dso[2] = hnd; in set()
[all …]
DeglApi.cpp318 if (cnx->dso) { in eglGetConfigs()
343 if (cnx->dso) { in eglChooseConfig()
884 if (!cnx->dso) in eglWaitGL()
895 if (!cnx->dso) in eglWaitNative()
905 if (cnx->dso) { in eglGetError()
991 if (cnx->dso && cnx->egl.eglGetProcAddress) { in eglGetProcAddress()
1301 if (cnx->dso && cnx->egl.eglSwapInterval) { in eglSwapInterval()
1318 if (!cnx->dso) in eglWaitClient()
1341 if (cnx->dso && cnx->egl.eglBindAPI) { in eglBindAPI()
1356 if (cnx->dso && cnx->egl.eglQueryAPI) { in eglQueryAPI()
[all …]
Degldefs.h40 inline egl_connection_t() : dso(0) { } in egl_connection_t()
41 void * dso; member
DLoader.h52 void* dso[3]; member
68 void init_api(void* dso,
Degl.cpp269 if (cnx->dso == 0) { in validate_display_connection()
350 if (cnx->dso == 0) { in egl_init_drivers_locked()
355 cnx->dso = loader.open(cnx); in egl_init_drivers_locked()
358 return cnx->dso ? EGL_TRUE : EGL_FALSE; in egl_init_drivers_locked()
Degl_display.cpp109 if (cnx->dso && disp.dpy == EGL_NO_DISPLAY) { in getDisplay()
113 loader.close(cnx->dso); in getDisplay()
114 cnx->dso = NULL; in getDisplay()
160 if (cnx->dso) { in initialize()
269 if (cnx->dso && disp.state == egl_display_t::INITIALIZED) { in terminate()
Degl_cache.cpp93 if (cnx->dso && cnx->major >= 0 && cnx->minor >= 0) { in initialize()
/frameworks/compile/mclinker/include/mcld/Config/
DLinkers.def.cmake12 // macro with a single parameter (the name of the target whose exe/dso can be
DLinkers.def.in12 // 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/av/services/camera/libcameraservice/common/
DCameraModule.cpp280 return mModule->common.dso; in getDso()