Lines Matching defs:callouts
43 * Callouts.
63 callout *c_next; /* List of callouts */
70 static callout callouts; /* List of pending callouts */
71 static callout *free_callouts; /* Cache of free callouts */
143 for (cp = &callouts; (cp2 = cp->c_next); cp = cp2)
167 for (cp = &callouts; (cp2 = cp->c_next); cp = cp2) {
185 for (cp = callouts.c_next; cp; cp = cp->c_next) {
212 * While there are more callouts waiting...
214 while ((cp = callouts.c_next) && cp->c_time <= now) {
228 callouts.c_next = cp->c_next;
239 if ((cp = callouts.c_next))