Lines Matching defs:vl
667 struct verslist *vl;
669 for (vl = rs->vlist; vl; vl = vl->next)
670 if (vl->vers == vers)
672 if (vl)
674 vl = (struct verslist *)malloc(sizeof (struct verslist));
675 if (vl == NULL)
677 vl->vers = vers;
678 vl->next = rs->vlist;
679 rs->vlist = vl;
717 struct verslist *vl;
889 for (vl = rs->vlist; vl; vl = vl->next) {
890 bytes_trans += (len = printf("%d", vl->vers))
892 if (vl->next)