Lines Matching refs:me
71 struct pinfo *pinfo, *last, *me, *myparent; in eptstat() local
76 me = myparent = last = (struct pinfo *)0; in eptstat()
88 me = pinfo; in eptstat()
99 if (me) { in eptstat()
102 myparent->next = me->next; in eptstat()
104 entry->pinfo = me->next; in eptstat()
105 if (me == last) in eptstat()
110 if ((c != STAT_NEXT) && (me || (c != RM_RDY))) { in eptstat()
113 if (me == NULL) { in eptstat()
115 me = (struct pinfo *) in eptstat()
117 if (me == NULL) { in eptstat()
122 me->next = (struct pinfo *)NULL; in eptstat()
124 if (me->aclass[0]) in eptstat()
126 me->aclass); in eptstat()
129 useclass = me->aclass; in eptstat()
131 (void) strncpy(me->pkg, pkg, PKGSIZ); in eptstat()
138 if (me->status != SERVED_FILE) in eptstat()
139 me->status = ((c == DUP_ENTRY) ? '\0' : c); in eptstat()
142 last->next = me; /* add to end */ in eptstat()
144 entry->pinfo = me; /* only item */ in eptstat()
147 if (me) { in eptstat()
148 free(me); in eptstat()
149 me = (struct pinfo *)0; in eptstat()
153 return (me); in eptstat()