tag | line | file | source code |
tm | 86 | net/tcp/timer.c | struct timer *tm; |
tm | 105 | net/tcp/timer.c | for (tm = (struct timer *)timer_base; |
tm | 106 | net/tcp/timer.c | tm->next != NULL ; |
tm | 107 | net/tcp/timer.c | tm=(struct timer *)tm->next) |
tm | 109 | net/tcp/timer.c | if (tm->next == t) |
tm | 111 | net/tcp/timer.c | tm->next = t->next; |
tm | 123 | net/tcp/timer.c | struct timer *tm; |
tm | 153 | net/tcp/timer.c | for (tm = (struct timer *)timer_base; ; tm=(struct timer *)tm->next) |
tm | 155 | net/tcp/timer.c | if (tm->next == NULL || before (t->when,tm->next->when)) |
tm | 157 | net/tcp/timer.c | t->next = tm->next; |
tm | 158 | net/tcp/timer.c | tm->next = t; |