Lines Matching refs:t
269 struct sys_timeo *timeout, *t;
296 for(t = next_timeout; t != NULL; t = t->next) {
297 timeout->time -= t->time;
298 if (t->next == NULL || t->next->time > timeout->time) {
299 if (t->next != NULL) {
300 t->next->time -= timeout->time;
302 timeout->next = t->next;
303 t->next = timeout;
323 struct sys_timeo *prev_t, *t;
329 for (t = next_timeout, prev_t = NULL; t != NULL; prev_t = t, t = t->next) {
330 if ((t->h == handler) && (t->arg == arg)) {
334 next_timeout = t->next;
336 prev_t->next = t->next;
339 if (t->next != NULL) {
340 t->next->time += t->time;
342 memp_free(MEMP_SYS_TIMEOUT, t);
403 * This is necessary if sys_check_timeouts() hasn't been called for a long