Lines Matching defs:dlopen
24 * Implements a wrapper for dlopen() and dlsym() so that epoxy will
27 * "override_GL_glWhatever()" when it tries to dlopen() and dlsym()
96 /* Many (most?) OpenGL programs dlopen libGL.so.1 rather than linking
98 * wrapped GL symbols via LD_PRELOAD. So we catch the dlopen in a
102 dlopen(const char *filename, int flag)
107 /* Before deciding whether to redirect this dlopen to our own
108 * library, we call the real dlopen. This assures that any
114 /* If filename is not a wrapped library, just return real dlopen */
146 real_dlopen = (fips_dlopen_t) dlwrap_real_dlsym(RTLD_NEXT, "dlopen");
148 fputs("Error: Failed to find symbol for dlopen.\n", stderr);