Lines Matching refs:first

25     char *first;  member
45 char *first; member
351 if (rp->first != NULL)
352 send_to_server (rp->first, 0);
357 if (rp->first != NULL)
358 send_to_server (rp->first, 0);
366 if (rp->first)
367 free (rp->first);
422 if (log_data.revlist->first)
423 free (log_data.revlist->first);
583 r->first = copy;
595 r->last = r->first;
597 if (r->first[0] != '\0' && r->first[strlen (r->first) - 1] == '.')
600 r->first[strlen (r->first) - 1] = '\0';
604 if (*r->first == '\0')
605 r->first = NULL;
609 if (r->first != NULL)
610 r->first = xstrdup (r->first);
1013 if (r->first == NULL && r->last == NULL)
1017 nr->first = RCS_head (rcs);
1018 nr->last = xstrdup (nr->first);
1019 nr->fields = numdots (nr->first) + 1;
1026 if (isdigit ((unsigned char) r->first[0]))
1027 nr->first = RCS_getbranch (rcs, r->first, 1);
1030 branch = RCS_whatbranch (rcs, r->first);
1034 r->first, rcs->path);
1038 nr->first = RCS_getbranch (rcs, branch, 1);
1041 if (nr->first == NULL)
1044 r->first, rcs->path);
1048 nr->last = xstrdup (nr->first);
1049 nr->fields = numdots (nr->first) + 1;
1053 if (r->first == NULL || isdigit ((unsigned char) r->first[0]))
1054 nr->first = xstrdup (r->first);
1057 if (RCS_nodeisbranch (rcs, r->first))
1058 nr->first = RCS_whatbranch (rcs, r->first);
1060 nr->first = RCS_gettag (rcs, r->first, 1, (int *) NULL);
1061 if (nr->first == NULL)
1064 r->first, rcs->path);
1070 if (r->last == r->first)
1071 nr->last = xstrdup (nr->first);
1084 if (nr->first != NULL)
1085 free (nr->first);
1095 if (r->first == NULL)
1099 nr->first = xstrdup (".0");
1104 nr->first = xstrdup (nr->last);
1105 cp = strrchr (nr->first, '.');
1111 nr->fields = numdots (nr->first) + 1;
1112 nr->last = xstrdup (nr->first);
1125 nr->fields = numdots (nr->first) + 1;
1128 && version_compare (nr->first, nr->last,
1133 r->first, r->last, rcs->path);
1134 free (nr->first);
1139 if (version_compare (nr->first, nr->last, nr->fields) > 0)
1143 tmp = nr->first;
1144 nr->first = nr->last;
1164 nr->first = xstrdup (rcs->branch);
1169 nr->first = xstrdup (rcs->head);
1170 cp = strrchr (nr->first, '.');
1173 nr->last = xstrdup (nr->first);
1174 nr->fields = numdots (nr->first) + 1;
1198 if (r->first != NULL)
1199 free (r->first);
1292 version_compare (v, r->first, r->fields) >= 0
1294 version_compare (v, r->first, r->fields) > 0