Home | History | Annotate | Download | only in src

Lines Matching refs:exp

28  * $FreeBSD: src/usr.sbin/ppp/timer.c,v 1.47.24.1.4.1 2010/12/21 17:10:29 kensmith Exp $
192 struct pppTimer *tp, *exp, *next;
208 exp = NULL;
212 tp->enext = exp;
213 exp = tp;
224 while (exp) {
225 ExpiredList = exp->enext;
226 exp->enext = NULL;
227 if (exp->func)
228 (*exp->func)(exp->arg);
229 exp = ExpiredList;