Lines Matching defs:nl
664 struct netidlist *nl;
666 for (nl = rs->nlist; nl; nl = nl->next)
667 if (strcmp(nl->netid, netid) == 0)
669 if (nl)
671 nl = malloc(sizeof(*nl));
672 if (nl == NULL)
674 nl->netid = netid;
675 nl->next = rs->nlist;
676 rs->nlist = nl;
688 struct netidlist *nl;
858 for (nl = rs->nlist; nl; nl = nl->next) {
859 (void)strlcat(buf, nl->netid, sizeof(buf));
860 if (nl->next)