Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/os/
H A Dmodctl.c4784 struct modctl *hmodp = NULL; in ddi_modopen() local
4807 retval = modrload(subdir, mod, &hmodp); in ddi_modopen()
4818 hmodp ? hmodp->mod_filename : "<unknown>", in ddi_modopen()
4819 (void *)hmodp, retval); in ddi_modopen()
4821 return ((ddi_modhandle_t)hmodp); in ddi_modopen()
4828 struct modctl *hmodp = (struct modctl *)h; in ddi_modsym() local
4832 ASSERT(hmodp && name && hmodp->mod_installed && (hmodp->mod_ref >= 1)); in ddi_modsym()
4833 if ((hmodp == NULL) || (name == NULL) || in ddi_modsym()
4834 (hmodp->mod_installed == 0) || (hmodp->mod_ref < 1)) { in ddi_modsym()
4838 f = (void *)kobj_lookup(hmodp->mod_mp, (char *)name); in ddi_modsym()
[all …]