Searched refs:timer (Results 76 - 100 of 744) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/tulip/
H A D21142.c95 mod_timer(&tp->timer, RUN_AT(next_tick));
193 del_timer_sync(&tp->timer);
195 tp->timer.expires = RUN_AT(3*HZ);
196 add_timer(&tp->timer);
203 del_timer_sync(&tp->timer);
205 tp->timer.expires = RUN_AT(3*HZ);
206 add_timer(&tp->timer);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/macintosh/
H A Dmediabay.c21 #include <linux/timer.h>
90 int timer; member in struct:media_bay_info
397 bay->timer = MS_TO_HZ(MB_POWER_DELAY);
510 /* If timer expired or polling IDE busy, run state machine */
511 if ((bay->state != mb_ide_waiting) && (bay->timer != 0) && ((--bay->timer) != 0))
521 bay->timer = MS_TO_HZ(MB_RESET_DELAY);
527 bay->timer = MS_TO_HZ(MB_SETUP_DELAY);
541 bay->timer = MS_TO_HZ(MB_IDE_WAIT);
551 bay->timer
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/joystick/
H A Da3d.c58 struct timer_list timer; member in struct:a3d
182 mod_timer(&a3d->timer, jiffies + A3D_REFRESH_TIME);
212 mod_timer(&a3d->timer, jiffies + A3D_REFRESH_TIME);
224 del_timer(&a3d->timer);
235 mod_timer(&a3d->timer, jiffies + A3D_REFRESH_TIME);
247 del_timer(&a3d->timer);
267 init_timer(&a3d->timer);
268 a3d->timer.data = (long) a3d;
269 a3d->timer.function = a3d_timer;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc/kernel/
H A Dopen_pic.c55 static void openpic_inittimer(u_int timer, u_int pri, u_int vector);
56 static void openpic_maptimer(u_int timer, u_int cpumask);
129 #define check_arg_timer(timer) \
130 if (timer < 0 || timer >= OPENPIC_NUM_TIMERS) \
131 printk("open_pic.c:%d: illegal timer %d\n", __LINE__, timer);
296 printk("OpenPIC timer frequency is %d.%06d MHz\n",
305 /* Initialize timer interrupts */
306 if ( ppc_md.progress ) ppc_md.progress("openpic: timer",
588 openpic_inittimer(u_int timer, u_int pri, u_int vec) argument
601 openpic_maptimer(u_int timer, u_int cpumask) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/arch/mips/cpu/sb1250/src/
H A Ddev_jtag.c179 int64_t timer; local
182 TIMER_SET(timer, 120*CFE_HZ);
186 } while ((magic == 0) && !TIMER_EXPIRED(timer));
H A Ddev_sb1250_m41t81clock.c314 int64_t timer; local
337 * submits or the timer expires, whichever comes first. The
356 TIMER_SET(timer,50);
359 while (!TIMER_EXPIRED(timer)) {
439 int64_t timer; local
450 TIMER_SET(timer,300);
451 while (!TIMER_EXPIRED(timer)) {
H A Ddev_sb1250_x1241clock.c307 int64_t timer; local
334 * submits or the timer expires, whichever comes first. The
353 TIMER_SET(timer,50);
356 while (!TIMER_EXPIRED(timer)) {
427 int64_t timer; local
439 TIMER_SET(timer,300);
440 while (!TIMER_EXPIRED(timer)) {
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/dev/
H A Ddev_bcm1250.c227 int64_t timer; local
248 TIMER_SET(timer, 5*CFE_HZ);
249 while (!TIMER_EXPIRED(timer)) {
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/net/
H A Dnet_dns.c120 int64_t timer; local
172 * Set a timer for the response
175 TIMER_SET(timer,DNS_QUERY_TIMEOUT*CFE_HZ);
181 while (!(expired = TIMER_EXPIRED(timer))) {
H A Dnet_icmp.c217 int64_t timer; local
274 TIMER_SET(timer,2*CFE_HZ);
276 while (!TIMER_EXPIRED(timer)) {
H A Dnet_api.c92 int64_t timer; member in struct:net_ctx_s
314 int64_t timer; local
318 TIMER_SET(timer,ticks);
320 while (!TIMER_EXPIRED(timer)) {
925 if (TIMER_EXPIRED(netctx->timer)) {
927 TIMER_SET(netctx->timer,CFE_HZ);
986 TIMER_SET(ctx->timer,CFE_HZ);
1019 TIMER_CLEAR(netctx->timer);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/sound/emu10k1/
H A Dcardwi.c34 #include "timer.h"
181 emu10k1_timer_install(card, &wiinst->timer, delay / 2);
198 emu10k1_timer_uninstall(card, &wiinst->timer);
230 emu10k1_timer_enable(wave_dev->card, &wiinst->timer);
245 emu10k1_timer_disable(card, &wiinst->timer);
281 emu10k1_timer_uninstall(card, &wiinst->timer);
285 emu10k1_timer_install(card, &wiinst->timer, delay / 2);
H A Dcardwi.h36 #include "timer.h"
60 struct emu_timer timer; member in struct:wiinst
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/irda/
H A Dirda_device.c56 #include <net/irda/timer.h>
282 del_timer(&task->timer);
332 del_timer(&task->timer);
344 /* Stop timer now that we are here */
345 del_timer(&task->parent->timer);
353 irda_start_timer(&task->timer, timeout, (void *) task,
395 init_timer(&task->timer);
412 * the timer if the task has not finished yet
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/isdn/hisax/
H A Dteleint.c208 cs->hw.hfc.timer.expires = jiffies + 1;
209 add_timer(&cs->hw.hfc.timer);
215 del_timer(&cs->hw.hfc.timer);
257 cs->hw.hfc.timer.expires = jiffies + 1;
258 add_timer(&cs->hw.hfc.timer);
286 cs->hw.hfc.timer.function = (void *) TeleInt_Timer;
287 cs->hw.hfc.timer.data = (long) cs;
288 init_timer(&cs->hw.hfc.timer);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/acpi/ospm/include/
H A Dtz.h31 #include <linux/timer.h>
166 struct timer_list timer; member in struct:__anon894
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/
H A Dtcp_timer.c38 const char timer_bug_msg[] = KERN_DEBUG "tcpbug: unknown timer value\n";
42 * We may wish use just one timer maintaining a list of expire jiffies
60 init_timer(&sk->timer);
61 sk->timer.function=&tcp_keepalive_timer;
62 sk->timer.data = (unsigned long) sk;
80 if(timer_pending(&sk->timer) && del_timer(&sk->timer))
302 * The TCP retransmit timer.
537 if (timer_pending(&sk->timer) && del_timer (&sk->timer))
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/video/
H A Dsbusfb.h1 #include <linux/timer.h>
73 struct timer_list timer; /* cursor timer */ member in struct:cg_cursor
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/video/
H A Dsbusfb.h1 #include <linux/timer.h>
73 struct timer_list timer; /* cursor timer */ member in struct:cg_cursor
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/sgi-ip27/
H A Dip27-reset.c14 #include <linux/timer.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sparc/kernel/
H A Dtick14.c22 #include <asm/timer.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/isdn/isdnloop/
H A Disdnloop.h48 #include <linux/timer.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/
H A Dscsi_queue.c17 #include <linux/timer.h>
88 * cancel the timer, so it doesn't time out.
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/pcmcia/
H A Dray_cs.h35 struct timer_list timer; member in struct:ray_dev_t
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/skfp/h/
H A Dsba.h53 struct timer_cell timer ; member in struct:s_sba_node_vars
82 struct timer_cell *tail_timer ; /* points to the last timer cell */
131 char raf_act_timer_poll ; /* activate the timer to send allc req */
132 char timer_count ; /* counts every timer function call */

Completed in 168 milliseconds

1234567891011>>