Home
last modified time | relevance | path

Searched refs:dl_handle (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libfstyp/common/
H A Dlibfstyp.c69 void *dl_handle; /* can be NULL if not loaded */ member
481 if (mp->dl_handle != NULL) { in fstyp_load_module()
485 if ((mp->dl_handle = dlopen(mp->pathname, RTLD_LAZY)) == NULL) { in fstyp_load_module()
490 dlsym(mp->dl_handle, "fstyp_mod_init"); in fstyp_load_module()
492 dlsym(mp->dl_handle, "fstyp_mod_fini"); in fstyp_load_module()
494 dlsym(mp->dl_handle, "fstyp_mod_ident"); in fstyp_load_module()
496 dlsym(mp->dl_handle, "fstyp_mod_get_attr"); in fstyp_load_module()
498 dlsym(mp->dl_handle, "fstyp_mod_dump"); in fstyp_load_module()
525 if (mp->dl_handle != NULL) { in fstyp_unload_module()
526 (void) dlclose(mp->dl_handle); in fstyp_unload_module()
[all …]
/illumos-gate/usr/src/lib/libgss/
H A Dg_initialize.c621 aMech->dl_handle = dl;
641 if (aMech->dl_handle == NULL)
662 (gss_acquire_cred_with_password_sfct)dlsym(aMech->dl_handle,
/illumos-gate/usr/src/uts/common/gssapi/include/
H A DmechglueP.h519 void *dl_handle; /* RTLD object handle for the mech */ member