Searched refs:timer (Results 351 - 375 of 744) sorted by relevance

<<11121314151617181920>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/net/lapb/
H A Dlapb_out.c14 * LAPB 002 Jonathan Naylor New timer architecture.
23 #include <linux/timer.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/netrom/
H A Dnr_out.c16 * NET/ROM 007 Jonathan(G4KLX) New timer architecture.
25 #include <linux/timer.h>
H A Dnr_subr.c15 * NET/ROM 007 Jonathan(G4KLX) New timer architecture.
24 #include <linux/timer.h>
74 * up by nr_kick called from the timer. This arrangement handles the
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/rose/
H A Drose_link.c14 * ROSE 003 Jonathan(G4KLX) New timer architecture.
23 #include <linux/timer.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/x25/
H A Dx25_facilities.c27 #include <linux/timer.h>
H A Dx25_out.c17 * X.25 002 Jonathan Naylor New timer architecture.
30 #include <linux/timer.h>
H A Dx25_route.c26 #include <linux/timer.h>
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dhdlc.h163 u8 T391; /* ! link integrity verification polling timer */
164 u8 T392; /* ! polling verification timer */
203 struct timer_list timer; member in struct:hdlc_device_struct
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/net/
H A Dneighbour.h107 struct timer_list timer; member in struct:neighbour
H A Drose.h136 struct timer_list timer; member in struct:__anon11742
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dhdlc.h163 u8 T391; /* ! link integrity verification polling timer */
164 u8 T392; /* ! polling verification timer */
203 struct timer_list timer; member in struct:hdlc_device_struct
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/net/
H A Dneighbour.h107 struct timer_list timer; member in struct:neighbour
H A Drose.h136 struct timer_list timer; member in struct:__anon7336
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/wan/
H A Dcycx_x25.c51 * 1999/05/16 marcelo fixed timer initialization in SVCs
110 struct timer_list timer; /* timer used for svc channel disc. */ member in struct:x25_channel
394 init_timer(&chan->timer);
395 chan->timer.function = chan_timer;
396 chan->timer.data = (unsigned long)dev;
444 del_timer(&chan->timer);
1327 /* Called by kernel timer */
1352 del_timer(&chan->timer);
1513 mod_timer(&chan->timer, jiffie
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/
H A Dbonding.c209 #include <linux/timer.h>
473 struct timer_list *timer = &((struct bonding *)(dev->priv))->mii_timer; local
478 init_timer(timer);
479 timer->expires = jiffies + (miimon * HZ / 1000);
480 timer->data = (unsigned long)dev;
481 timer->function = (void *)&bond_mii_monitor;
482 add_timer(timer);
1420 /* re-arm the timer */
1582 /* re-arm the timer */
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/appletalk/
H A Dddp.c223 sk->timer.expires = jiffies + SOCK_DESTROY_TIME;
224 add_timer(&sk->timer);
238 init_timer(&sk->timer);
239 sk->timer.expires = jiffies + SOCK_DESTROY_TIME;
240 sk->timer.function = atalk_destroy_timer;
241 sk->timer.data = (unsigned long) sk;
242 add_timer(&sk->timer);
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ax25/
H A Daf_ax25.c72 * HaJo(DD8NE) Implementation of a T5 (idle) timer
74 * the timer gets reloaded on every received or transmitted
75 * I frame for IP or NETROM. The idle timer is not active
95 * AX.25 037 Jonathan(G4KLX) New timer architecture.
116 #include <linux/timer.h>
408 void ax25_destroy_socket(ax25_cb *ax25) /* Not static as it's used by the timer */
440 init_timer(&ax25->timer);
441 ax25->timer.expires = jiffies + 10 * HZ;
442 ax25->timer.function = ax25_destroy_timer;
443 ax25->timer
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/isdn/
H A Disdn_ppp.c1085 /* Reset hangup-timer */
2130 del_timer(&rs->timer);
2138 /* The timer callback function which is called when a ResetReq has timed out,
2146 printk(KERN_ERR "ippp_ccp: timer cb with zero closure.\n");
2164 /* Restart timer */
2165 rs->timer.expires = jiffies + HZ*5;
2166 add_timer(&rs->timer);
2168 printk(KERN_WARNING "ippp_ccp: timer cb in wrong state %d\n",
2190 rs->timer.data = (unsigned long)rs;
2191 rs->timer
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/block/
H A Dcpqarray.c33 #include <linux/timer.h>
384 del_timer(&hba[i]->timer);
423 del_timer(&hba[i]->timer);
590 init_timer(&hba[i]->timer);
591 hba[i]->timer.expires = jiffies + IDA_TIMER;
592 hba[i]->timer.data = (unsigned long)hba[i];
593 hba[i]->timer.function = ida_timer;
594 add_timer(&hba[i]->timer);
1218 * This timer was for timing out requests that haven't happened after
1219 * IDA_TIMEOUT. That wasn't such a good idea. This timer i
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/jbd/
H A Djournal.c196 struct timer_list timer; local
210 /* Set up an interval timer which can be used to trigger a
212 init_timer(&timer);
213 timer.data = (unsigned long) current;
214 timer.function = commit_timeout;
215 journal->j_commit_timer = &timer;
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/s390/block/
H A Ddasd_3990_erp.c15 #include <linux/timer.h>
391 * processing until the started timer has expired or an related
417 device->timer.function = dasd_3990_erp_restart_queue;
418 device->timer.data = (unsigned long) erp;
419 device->timer.expires = jiffies + (expires * HZ);
421 add_timer(&device->timer);
431 * a timer has expired.
682 * Use a timer (20 seconds) to retry the cqr if the interrupt is still missing.
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/pcmcia/
H A D3c574_cs.c76 #include <linux/timer.h>
683 int timer; local
686 for (timer = 1620; timer >= 0; timer--) {
1014 This timer serves two purposes: to check for missed interrupts
1029 /* Check for pending interrupt with expired latency timer: with
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/
H A Dsx.c123 - Set sx_poll to 1 to poll every timer tick (10ms on Intel).
1101 init_timer(&board->timer);
1103 board->timer.expires = jiffies + sx_poll;
1104 add_timer (&board->timer);
1831 /* The timer should be initialized anyway: That way we can safely
1833 init_timer (&board->timer);
1836 board->timer.data = (unsigned long) board;
1837 board->timer.function = sx_pollfunc;
1838 board->timer.expires = jiffies + board->poll;
1839 add_timer (&board->timer);
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/sound/
H A Desssolo1.c223 struct timer_list timer; member in struct:solo1_state::__anon2674
1656 s->midi.timer.expires = jiffies+1;
1657 add_timer(&s->midi.timer);
1868 init_timer(&s->midi.timer);
1869 s->midi.timer.expires = jiffies+1;
1870 s->midi.timer.data = (unsigned long)s;
1871 s->midi.timer.function = solo1_midi_timer;
1872 add_timer(&s->midi.timer);
1921 del_timer(&s->midi.timer);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/tulip/
H A Dtulip_core.c130 * This table use during operation for capabilities and media timer.
493 /* Set the timer to switch to check for link beat and perhaps switch
495 tp->timer.expires = RUN_AT(next_tick);
496 add_timer(&tp->timer);
804 del_timer_sync (&tp->timer);
829 init_timer(&tp->timer);
830 tp->timer.data = (unsigned long)dev;
831 tp->timer.function = tulip_tbl[tp->chip_id].media_timer;
1480 init_timer(&tp->timer);
1481 tp->timer
[all...]

Completed in 313 milliseconds

<<11121314151617181920>>