Home | History | Annotate | Download | only in tool

Lines Matching refs:plp

926   struct plink *plp;
943 for(plp=cfp->bplp; plp; plp=plp->next){
944 other = plp->cfp;
960 struct plink *plp;
975 for(plp=cfp->fplp; plp; plp=plp->next){
976 change = SetUnion(plp->cfp->fws,cfp->fws);
978 plp->cfp->status = INCOMPLETE;
2709 void Plink_delete(struct plink *plp)
2713 while( plp ){
2714 nextpl = plp->next;
2715 plp->next = plink_freelist;
2716 plink_freelist = plp;
2717 plp = nextpl;
2873 PRIVATE void PlinkPrint(out,plp,tag)
2875 struct plink *plp;
2878 while( plp ){
2879 fprintf(out,"%12s%s (state %2d) ","",tag,plp->cfp->stp->statenum);
2880 ConfigPrint(out,plp->cfp);
2882 plp = plp->next;