Lines Matching defs:el
2546 append_entry_to_list(prop_list_t *el, prop_list_t *list)
2550 if (el == NULL)
2554 list = el;
2566 ptr->next = el;
2593 prop_list_t *el;
2655 el = (prop_list_t *)malloc(sizeof (prop_list_t));
2656 el->pname = pname;
2657 el->pval = pval;
2658 el->next = NULL;
2659 *plist = append_entry_to_list(el, *plist);
3238 picld_plugin_reg_list_t *el;
3247 el = malloc(sizeof (picld_plugin_reg_list_t));
3248 if (el == NULL)
3250 el->reg.version = regp->version;
3251 el->reg.critical = regp->critical;
3253 el->reg.name = strdup(regp->name);
3254 if (el->reg.name == NULL)
3257 el->reg.plugin_init = regp->plugin_init;
3258 el->reg.plugin_fini = regp->plugin_fini;
3259 el->next = NULL;
3262 plugin_reg_list = el;
3267 tmp->next = el;