Lines Matching defs:extmod
102 npf_extmod_t *extmod = npf_extmod_list;
104 while (extmod) {
105 if ((strcmp(extmod->name, name) == 0) &&
106 (*extcall = extmod->cons(name)) != NULL) {
107 return extmod;
109 extmod = extmod->next;
112 extmod = npf_extmod_load(name);
113 if (extmod && (*extcall = extmod->cons(name)) != NULL) {
114 return extmod;
121 npf_extmod_param(npf_extmod_t *extmod, nl_ext_t *ext,
124 return extmod->param(ext, param, val);