Lines Matching refs:x25
34 struct x25_sock *x25 = x25_sk(sk); in x25_init_timers() local
36 setup_timer(&x25->timer, x25_timer_expiry, (unsigned long)sk); in x25_init_timers()
55 struct x25_sock *x25 = x25_sk(sk); in x25_start_t2timer() local
57 mod_timer(&x25->timer, jiffies + x25->t2); in x25_start_t2timer()
62 struct x25_sock *x25 = x25_sk(sk); in x25_start_t21timer() local
64 mod_timer(&x25->timer, jiffies + x25->t21); in x25_start_t21timer()
69 struct x25_sock *x25 = x25_sk(sk); in x25_start_t22timer() local
71 mod_timer(&x25->timer, jiffies + x25->t22); in x25_start_t22timer()
76 struct x25_sock *x25 = x25_sk(sk); in x25_start_t23timer() local
78 mod_timer(&x25->timer, jiffies + x25->t23); in x25_start_t23timer()
88 struct x25_sock *x25 = x25_sk(sk); in x25_display_timer() local
90 if (!timer_pending(&x25->timer)) in x25_display_timer()
93 return x25->timer.expires - jiffies; in x25_display_timer()
139 struct x25_sock *x25 = x25_sk(sk); in x25_do_timer_expiry() local
141 switch (x25->state) { in x25_do_timer_expiry()
144 if (x25->condition & X25_COND_ACK_PENDING) { in x25_do_timer_expiry()
145 x25->condition &= ~X25_COND_ACK_PENDING; in x25_do_timer_expiry()
153 x25->state = X25_STATE_2; in x25_do_timer_expiry()