Lines Matching defs:insdef
1322 * insdef - Address of variable to receive address of predecessor
1327 * its MODLIST_T structure. *insdef references the predecessor node, or
1330 * If the module is not found, NULL is returned. *insdef references
1335 module_loaded(const char *name, MODLIST_T **insdef)
1340 *insdef = NULL;
1347 *insdef = moddef;
1356 *insdef = moddef;
1357 moddef = (*insdef)->ml_next;
1731 MODLIST_T *moddef, *insdef;
1757 moddef = module_loaded(name, &insdef);
1761 * As a result of module_loaded(), insdef now contains the
1853 MODLIST_T *old_moddef = module_loaded(mod->mod_name, &insdef);
1885 * insdef now contains the insertion point for the absolute
1897 * Link module into the module list. If insdef is NULL,
1898 * it goes at the head. If insdef is non-NULL, it goes immediately
1901 if (insdef == NULL) {
1905 moddef->ml_next = insdef->ml_next;
1906 insdef->ml_next = moddef;
1925 MODLIST_T *moddef, *insdef;
1927 moddef = module_loaded(name, &insdef);
1953 if (insdef == NULL)
1956 insdef->ml_next = moddef->ml_next;
3037 MODLIST_T *insdef;
3087 modlist = module_loaded(buf, &insdef);
3090 modlist = module_loaded(buf, &insdef);