Lines Matching defs:plp
822 struct plink *plp;
839 for(plp=cfp->bplp; plp; plp=plp->next){
840 other = plp->cfp;
857 struct plink *plp;
872 for(plp=cfp->fplp; plp; plp=plp->next){
873 change = SetUnion(plp->cfp->fws,cfp->fws);
875 plp->cfp->status = INCOMPLETE;
2475 void Plink_delete(plp)
2476 struct plink *plp;
2480 while( plp ){
2481 nextpl = plp->next;
2482 plp->next = plink_freelist;
2483 plink_freelist = plp;
2484 plp = nextpl;
2615 PRIVATE void PlinkPrint(out,plp,tag)
2617 struct plink *plp;
2620 while( plp ){
2621 fprintf(out,"%12s%s (state %2d) ","",tag,plp->cfp->stp->index);
2622 ConfigPrint(out,plp->cfp);
2624 plp = plp->next;