HomeSort by relevance Sort by last modified time
    Searched refs:dlsym (Results 1 - 25 of 330) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
egl_dispatch.cpp 25 ptr = dlsym(gles_android,"eglGetError"); disp->set_eglGetError((eglGetError_t)ptr);
26 ptr = dlsym(gles_android,"eglGetDisplay"); disp->set_eglGetDisplay((eglGetDisplay_t)ptr);
27 ptr = dlsym(gles_android,"eglInitialize"); disp->set_eglInitialize((eglInitialize_t)ptr);
28 ptr = dlsym(gles_android,"eglTerminate"); disp->set_eglTerminate((eglTerminate_t)ptr);
29 ptr = dlsym(gles_android,"eglQueryString"); disp->set_eglQueryString((eglQueryString_t)ptr);
30 ptr = dlsym(gles_android,"eglGetConfigs"); disp->set_eglGetConfigs((eglGetConfigs_t)ptr);
31 ptr = dlsym(gles_android,"eglChooseConfig"); disp->set_eglChooseConfig((eglChooseConfig_t)ptr);
32 ptr = dlsym(gles_android,"eglGetConfigAttrib"); disp->set_eglGetConfigAttrib((eglGetConfigAttrib_t)ptr);
33 ptr = dlsym(gles_android,"eglCreateWindowSurface"); disp->set_eglCreateWindowSurface((eglCreateWindowSurface_t)ptr);
34 ptr = dlsym(gles_android,"eglCreatePbufferSurface"); disp->set_eglCreatePbufferSurface((eglCreatePbufferSurfac (…)
    [all...]
gles_dispatch.cpp 25 ptr = dlsym(gles_android,"glAlphaFunc"); disp->set_glAlphaFunc((glAlphaFunc_t)ptr);
26 ptr = dlsym(gles_android,"glClearColor"); disp->set_glClearColor((glClearColor_t)ptr);
27 ptr = dlsym(gles_android,"glClearDepthf"); disp->set_glClearDepthf((glClearDepthf_t)ptr);
28 ptr = dlsym(gles_android,"glClipPlanef"); disp->set_glClipPlanef((glClipPlanef_t)ptr);
29 ptr = dlsym(gles_android,"glColor4f"); disp->set_glColor4f((glColor4f_t)ptr);
30 ptr = dlsym(gles_android,"glDepthRangef"); disp->set_glDepthRangef((glDepthRangef_t)ptr);
31 ptr = dlsym(gles_android,"glFogf"); disp->set_glFogf((glFogf_t)ptr);
32 ptr = dlsym(gles_android,"glFogfv"); disp->set_glFogfv((glFogfv_t)ptr);
33 ptr = dlsym(gles_android,"glFrustumf"); disp->set_glFrustumf((glFrustumf_t)ptr);
34 ptr = dlsym(gles_android,"glGetClipPlanef"); disp->set_glGetClipPlanef((glGetClipPlanef_t)ptr)
    [all...]
ApiInitializer.h 36 symbol = dlsym(m_dso, name);
  /sdk/emulator/opengl/tests/EGL_host_wrapper/
egl_dispatch.cpp 31 ptr = dlsym(libEGL,"eglGetError"); disp->set_eglGetError((eglGetError_t)ptr);
32 ptr = dlsym(libEGL,"eglGetDisplay"); disp->set_eglGetDisplay((eglGetDisplay_t)ptr);
33 ptr = dlsym(libEGL,"eglInitialize"); disp->set_eglInitialize((eglInitialize_t)ptr);
34 ptr = dlsym(libEGL,"eglTerminate"); disp->set_eglTerminate((eglTerminate_t)ptr);
35 ptr = dlsym(libEGL,"eglQueryString"); disp->set_eglQueryString((eglQueryString_t)ptr);
36 ptr = dlsym(libEGL,"eglGetConfigs"); disp->set_eglGetConfigs((eglGetConfigs_t)ptr);
37 ptr = dlsym(libEGL,"eglChooseConfig"); disp->set_eglChooseConfig((eglChooseConfig_t)ptr);
38 ptr = dlsym(libEGL,"eglGetConfigAttrib"); disp->set_eglGetConfigAttrib((eglGetConfigAttrib_t)ptr);
39 ptr = dlsym(libEGL,"eglCreateWindowSurface"); disp->set_eglCreateWindowSurface((eglCreateWindowSurface_t)ptr);
40 ptr = dlsym(libEGL,"eglCreatePbufferSurface"); disp->set_eglCreatePbufferSurface((eglCreatePbufferSurface_t)pt (…)
    [all...]
  /external/qemu/
dynlink-static.c 22 /* dummy dlopen()/dlclose()/dlsym() implementations to be used in static builds */
28 /* mimick succesful load, then all calls to dlsym/dlvsym will fail */
36 void* dlsym(void) function
  /external/clang/test/SemaCXX/
cxx98-compat-pedantic.cpp 28 void *dlsym();
29 void (*FnPtr)() = (void(*)())dlsym(); // expected-warning {{cast between pointer-to-function and pointer-to-object is incompatible with C++98}}
30 void *FnVoidPtr = (void*)&dlsym; // expected-warning {{cast between pointer-to-function and pointer-to-object is incompatible with C++98}}
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glapi_gentable.c 121 *procp = dlsym(handle, symboln);
128 *procp = dlsym(handle, symboln);
135 *procp = dlsym(handle, symboln);
142 *procp = dlsym(handle, symboln);
149 *procp = dlsym(handle, symboln);
156 *procp = dlsym(handle, symboln);
163 *procp = dlsym(handle, symboln);
170 *procp = dlsym(handle, symboln);
177 *procp = dlsym(handle, symboln);
184 *procp = dlsym(handle, symboln)
    [all...]
  /hardware/ti/omap3/omx/core_plugin/omx_core_plugin/src/
ti_omx_interface.cpp 106 pOMX_Init = (tpOMX_Init)dlsym(ipHandle, "TIOMX_Init");
107 pOMX_Deinit = (tpOMX_Deinit)dlsym(ipHandle, "TIOMX_Deinit");
108 pOMX_ComponentNameEnum = (tpOMX_ComponentNameEnum)dlsym(ipHandle, "TIOMX_ComponentNameEnum");
109 pOMX_GetHandle = (tpOMX_GetHandle)dlsym(ipHandle, "TIOMX_GetHandle");
110 pOMX_FreeHandle = (tpOMX_FreeHandle)dlsym(ipHandle, "TIOMX_FreeHandle");
111 pOMX_GetComponentsOfRole = (tpOMX_GetComponentsOfRole)dlsym(ipHandle, "TIOMX_GetComponentsOfRole");
112 pOMX_GetRolesOfComponent = (tpOMX_GetRolesOfComponent)dlsym(ipHandle, "TIOMX_GetRolesOfComponent");
113 pOMX_SetupTunnel = (tpOMX_SetupTunnel)dlsym(ipHandle, "TIOMX_SetupTunnel");
114 pOMXConfigParser = (tpOMXConfigParser)dlsym(ipHandle, "TIOMXConfigParserRedirect");
115 pOMX_GetContentPipe = NULL; // (tpOMX_GetContentPipe)dlsym(ipHandle, "OMX_GetContentPipe")
    [all...]
  /frameworks/rs/cpp/
RenderScript.cpp 75 RS::dispatch->AllocationGetType = (AllocationGetTypeFnPtr)dlsym(handle, "rsaAllocationGetType");
80 RS::dispatch->TypeGetNativeData = (TypeGetNativeDataFnPtr)dlsym(handle, "rsaTypeGetNativeData");
85 RS::dispatch->ElementGetNativeData = (ElementGetNativeDataFnPtr)dlsym(handle, "rsaElementGetNativeData");
90 RS::dispatch->ElementGetSubElements = (ElementGetSubElementsFnPtr)dlsym(handle, "rsaElementGetSubElements");
95 RS::dispatch->DeviceCreate = (DeviceCreateFnPtr)dlsym(handle, "rsDeviceCreate");
100 RS::dispatch->DeviceDestroy = (DeviceDestroyFnPtr)dlsym(handle, "rsDeviceDestroy");
105 RS::dispatch->DeviceSetConfig = (DeviceSetConfigFnPtr)dlsym(handle, "rsDeviceSetConfig");
110 RS::dispatch->ContextCreate = (ContextCreateFnPtr)dlsym(handle, "rsContextCreate");;
115 RS::dispatch->GetName = (GetNameFnPtr)dlsym(handle, "rsaGetName");;
120 RS::dispatch->ContextDestroy = (ContextDestroyFnPtr)dlsym(handle, "rsContextDestroy")
    [all...]
  /external/e2fsprogs/lib/ss/
get_readline.c 80 dlsym(handle, "readline");
82 dlsym(handle, "add_history");
84 dlsym(handle, "rl_forced_update_display");
87 dlsym(handle, "rl_completion_matches");
88 if ((t = dlsym(handle, "rl_readline_name")) != NULL)
91 dlsym(handle, "rl_attempted_completion_function")) != NULL)
  /development/ndk/platforms/android-3/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);
  /external/compiler-rt/lib/interception/
interception_linux.cc 19 #include <dlfcn.h> // for dlsym
24 *func_addr = (uptr)dlsym(RTLD_NEXT, func_name);
  /external/iproute2/include/
dlfcn.h 22 static inline void *dlsym(void *handle, const char *sym) function
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Library.c 43 return dlsym(handle, symbol);
  /ndk/tests/device/whole-static-libs/jni/
main.c 18 if (dlsym(lib, "foo2") == NULL) {
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/
dlfcn.h 38 extern void* dlsym(void* handle, const char* symbol);

Completed in 2869 milliseconds

1 2 3 4 5 6 7 8 91011>>