handle            221 dlsym_default.c static void get_dt_tags(void *handle, dt_tag *tags) {
handle            223 dlsym_default.c     if (dlinfo(handle, RTLD_DI_LINKMAP, &link_map) == -1)
handle            268 dlsym_default.c void *dlsym_default_internal(void *handle, const char*symbol) {
handle            274 dlsym_default.c   if (handle == RTLD_NEXT || handle == RTLD_DEFAULT) {
handle            276 dlsym_default.c     void *tmp_fnc = dlsym(handle, symbol);  // Hack: get symbol w/ any version
handle            290 dlsym_default.c     handle = dlopen(info.dli_fname, RTLD_NOLOAD | RTLD_LAZY);
handle            292 dlsym_default.c     if (handle == NULL)
handle            311 dlsym_default.c   get_dt_tags(handle, &tags);
handle            407 dmtcpplugin.cpp typedef void* (*dlsym_fnptr_t) (void *handle, const char *symbol);
handle             78 plugin/dl/dlwrappers.cpp int dlclose(void *handle)
handle             81 plugin/dl/dlwrappers.cpp   int ret = _real_dlclose(handle);
handle             38 plugin/pid/pid_syscallsreal.c typedef void* (*dlsym_fnptr_t) (void *handle, const char *symbol);
handle            113 plugin/pid/pid_syscallsreal.c void *_real_dlsym ( void *handle, const char *symbol ) {
handle            119 plugin/pid/pid_syscallsreal.c   return (void*) (*_libc_dlsym_fnptr) ( handle, symbol );
handle             84 plugin/pid/pidwrappers.h   LIB_PRIVATE void *_real_dlsym(void *handle, const char *symbol);
handle            349 syscallsreal.c typedef void* (*dlsym_fnptr_t) (void *handle, const char *symbol);
handle            353 syscallsreal.c void *_real_dlsym (void *handle, const char *symbol) {
handle            366 syscallsreal.c   void *res = (*_libc_dlsym_fnptr) (handle, symbol);
handle            397 syscallsreal.c int _real_dlclose(void *handle) {
handle            398 syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (int, dlclose) (handle);
handle            396 syscallwrappers.h   void * _real_dlsym (void *handle, const char *symbol);
handle            399 syscallwrappers.h   int _real_dlclose(void *handle);
handle            404 util_exec.cpp    void* handle = NULL;
handle            405 util_exec.cpp    handle = dlopen(LIBDL_FILENAME, RTLD_NOW);
handle            406 util_exec.cpp    JASSERT(handle != NULL) (dlerror());
handle            414 util_exec.cpp    base_addr = dlsym(handle, LIBDL_BASE_FUNC_STR);
handle            415 util_exec.cpp    dlsym_addr = dlsym(handle, "dlsym");
handle            416 util_exec.cpp    dlclose(handle);