Lines Matching defs:nol
1201 struct nd_optlist *nol;
1207 TAILQ_FOREACH(nol, &ndopts.opt_list, nol_next)
1208 if (prefix_check((struct nd_opt_prefix_info *)nol->nol_opt,
1488 struct nd_optlist *nol;
1495 nol = malloc(sizeof(*nol));
1496 if (nol == NULL) {
1501 nol->nol_opt = hdr;
1502 TAILQ_INSERT_TAIL(&(ndopts->opt_list), nol, nol_next);
1522 struct nd_optlist *nol;
1524 while ((nol = TAILQ_FIRST(&ndopts->opt_list)) != NULL) {
1525 TAILQ_REMOVE(&ndopts->opt_list, nol, nol_next);
1526 free(nol);