Lines Matching defs:el
2256 conf_entries_t *el;
2261 el = list;
2262 while (el != NULL) {
2263 del = el;
2264 el = el->next;
2269 return (el);
2282 conf_entries_t *el;
2305 el = malloc(sizeof (conf_entries_t));
2306 if (el == NULL)
2308 el->name = strdup(nametok);
2309 el->piclclass = strdup(classtok);
2310 if ((el->name == NULL) || (el->piclclass == NULL)) {
2311 free(el);
2314 el->next = NULL;
2320 list = el;
2325 ptr->next = el;
2367 asr_conf_entries_t *el;
2370 el = list;
2371 while (el != NULL) {
2372 del = el;
2373 el = el->next;
2401 asr_conf_entries_t *el;
2436 el = malloc(sizeof (asr_conf_entries_t));
2437 if (el == NULL)
2439 el->name = strdup(nametok);
2440 el->piclclass = strdup(classtok);
2441 el->status = strdup(statustok);
2442 el->address = strdup(addresstok);
2444 el->props = strdup(propstok);
2446 el->props = NULL;
2447 if ((el->name == NULL) || (el->piclclass == NULL) ||
2448 (el->address == NULL) || (el->status == NULL)) {
2449 if (el->name)
2450 free(el->name);
2451 if (el->address)
2452 free(el->address);
2453 if (el->status)
2454 free(el->status);
2455 if (el->piclclass)
2456 free(el->piclclass);
2457 if (el->props)
2458 free(el->props);
2459 free(el);
2462 el->next = NULL;
2468 list = el;
2473 ptr->next = el;