Lines Matching full:dlh
71 void *dlh; in try_dlopen() local
85 if ((dlh = fdlopen(fd, RTLD_NOW)) == NULL) { in try_dlopen()
92 return (dlh); in try_dlopen()
99 void *dlh; in try_dlopen() local
107 if ((dlh = dlopen(modfn, RTLD_NOW)) == NULL) { in try_dlopen()
112 return (dlh); in try_dlopen()
128 (module->dlh = try_dlopen(modpath)) == NULL) in try_module()
130 dlmodule = dlsym(module->dlh, "_pam_module"); in try_module()
135 module->func[i] = (pam_func_t)dlfunc(module->dlh, in try_module()
157 if (module->dlh != NULL) in try_module()
158 dlclose(module->dlh); in try_module()