Lines Matching refs:pt

672         struct   Symrev  * pt;
688 pt = talloc(struct Symrev);
689 pt->ssymbol = temp;
690 pt->override = flag;
692 pt->revno = 0;
696 pt->revno = sp;
698 pt->nextsym = 0;
699 *nextassoc = pt;
700 nextassoc = &pt->nextsym;
709 register struct chaccess *pt;
711 pt = talloc(struct chaccess);
712 pt->login = login;
713 pt->command = command;
714 pt->nextchaccess = 0;
715 *nextchaccess = pt;
716 nextchaccess = &pt->nextchaccess;
758 struct Message *pt;
772 pt = talloc(struct Message);
773 pt->revno = option;
774 pt->message = cb;
775 pt->nextmessage = 0;
776 *nextmessage = pt;
777 nextmessage = &pt->nextmessage;
789 struct Status *pt;
811 pt = talloc(struct Status);
812 pt->status = temp;
813 pt->revno = sp;
814 pt->nextstatus = 0;
815 *nextstate = pt;
816 nextstate = &pt->nextstatus;
828 struct delrevpair *pt;
831 pt = &delrev;
847 pt->strt = sp; pt->code = 1;
850 pt->end = 0;
854 pt->strt = sp;
860 pt->code = 0;
861 pt->end = 0;
865 error("invalid range %s %s after -o", pt->strt, sp);
870 pt->code = 2;
871 pt->end = 0;
876 pt->end = sp; pt->code = 3;
954 struct Lockrev *pt, **pre;
957 while ((pt = *pre))
958 if (strcmp(pt->revno, which) != 0)
959 pre = &pt->nextrev;
961 *pre = pt->nextrev;
962 tfree(pt);
1140 struct hshentry *pt;
1143 for (pt = strt; pt != tail; pt = pt->next) {
1144 if ( pt->branches ){ /* a branch point */
1145 rcserror("can't remove branch point %s", pt->num);
1149 if (lockpt->delta == pt) {
1150 rcserror("can't remove locked revision %s", pt->num);
1153 pt->selector = false;
1154 diagnose("deleting revision %s\n",pt->num);
1322 struct assoc **pre, *pt;
1329 for (pre = &Symbols; ; pre = &pt->nextassoc)
1330 if (!(pt = *pre)) {
1333 } else if (strcmp(pt->symbol, ssymbol) == 0) {
1334 *pre = pt->nextassoc;
1571 struct branchhead *pt, *pre;
1577 pre = pt = cuthead->branches;
1578 while( pt && pt->hsh != delstrt ) {
1579 pre = pt;
1580 pt = pt->nextbranch;
1583 pt->hsh = cuttail;
1584 else if ( pt == pre )
1585 cuthead->branches = pt->nextbranch;
1587 pre->nextbranch = pt->nextbranch;