Home | History | Annotate | Download | only in src

Lines Matching refs:act

170   smWinList_t *act, *old;
172 old = act = root;
173 while ( (act != NULL) && (strcmp(act->memName, eleName) != 0) ) {
174 old = act;
175 act = act->next;
177 if ( act != NULL ) {
178 if ( old == act ) // delete first list ele
179 root = act->next;
181 old->next = act->next;
182 smlLibFree(act->memName);
183 smlLibFree(act);