Lines Matching defs:lfd
1817 void *lfd;1852 lfd = (void *)dlopen(module_so, RTLD_LAZY);1854 if (lfd == NULL) {1863 (void) dlclose(lfd);1864 lfd = 0;1867 module_fds->mh = lfd;1883 return (lfd);1890 load_function(void *lfd, char *name, int (**func)())1894 if (lfd == NULL)1897 *func = (int (*)())dlsym(lfd, name);