Lines Matching defs:dlsym
24 * Implements a wrapper for dlopen() and dlsym() so that epoxy will
27 * "override_GL_glWhatever()" when it tries to dlopen() and dlsym()
157 * Return the dlsym() on the application's namespace for
184 dlsym(void *handle, const char *name)
206 /* And anything else is some unrelated dlsym. Just pass it
221 * I need some way to lookup the "dlsym" function in libdl, but
222 * I can't use 'dlsym' to do it. So dlvsym works, but forces me
232 * 2. Use libelf to find the offset of the 'dlsym'
251 real_dlsym = (fips_dlsym_t) dlvsym(RTLD_NEXT, "dlsym", version[i]);
256 fputs("Internal error: Failed to find real dlsym\n", stderr);
266 "And then inspecting the version attached to the dlsym symbol:\n"
268 "\treadelf -s /path/to/libdl.so.2 | grep dlsym\n"