Searched defs:dl_handle (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/lib/libfstyp/common/
H A Dlibfstyp.c71 void *dl_handle; /* can be NULL if not loaded */ member in struct:fstyp_module
483 if (mp->dl_handle != NULL) {
487 if ((mp->dl_handle = dlopen(mp->pathname, RTLD_LAZY)) == NULL) {
492 dlsym(mp->dl_handle, "fstyp_mod_init");
494 dlsym(mp->dl_handle, "fstyp_mod_fini");
496 dlsym(mp->dl_handle, "fstyp_mod_ident");
498 dlsym(mp->dl_handle, "fstyp_mod_get_attr");
500 dlsym(mp->dl_handle, "fstyp_mod_dump");
527 if (mp->dl_handle != NULL) {
528 (void) dlclose(mp->dl_handle);
[all...]

Completed in 22 milliseconds