Searched refs:timer (Results 1 - 25 of 744) sorted by path

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/bcm57xx/linux/
H A Db57um.c1693 /* set this timer for 2 seconds */
1824 init_timer(&pUmDevice->timer);
1825 pUmDevice->timer.expires = RUN_AT(pUmDevice->timer_interval);
1826 pUmDevice->timer.data = (unsigned long)dev;
1827 pUmDevice->timer.function = &bcm5700_timer;
1828 add_timer(&pUmDevice->timer);
1891 pUmDevice->timer.expires = RUN_AT(pUmDevice->timer_interval);
1892 add_timer(&pUmDevice->timer);
2024 pUmDevice->timer.expires = RUN_AT(pUmDevice->timer_interval);
2025 add_timer(&pUmDevice->timer);
[all...]
H A Dmm.h59 #include <linux/timer.h>
363 struct timer_list timer; member in struct:_UM_DEVICE_BLOCK
/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_24lc128eeprom.c267 int64_t timer; local
294 * submits or the timer expires, whichever comes first. The
314 TIMER_SET(timer,50);
317 while (!TIMER_EXPIRED(timer)) {
H A Ddev_sb1250_at24c02eeprom.c255 int64_t timer; local
282 * submits or the timer expires, whichever comes first. The
301 TIMER_SET(timer,50);
304 while (!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_pcmcia.c294 if (!TIMER_RUNNING(softc->timer)) {
295 TIMER_SET(softc->timer,10);
299 if (!TIMER_EXPIRED(softc->timer)) return;
317 TIMER_CLEAR(softc->timer);
H A Ddev_sb1250_x1240eeprom.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)) {
429 int64_t timer; local
440 TIMER_SET(timer,300);
441 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)) {
H A Dui_spdcmds.c312 int64_t timer; local
339 * submits or the timer expires, whichever comes first. The
358 TIMER_SET(timer,50);
361 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)) {
H A Ddev_ide_common.c118 int32_t timer; local
121 TIMER_SET(timer,10*CFE_HZ);
123 while (!TIMER_EXPIRED(timer)) {
185 int32_t timer; local
188 TIMER_SET(timer,10*CFE_HZ);
190 while (!TIMER_EXPIRED(timer)) {
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/include/
H A Ddev_ide_common.h185 uint32_t timer; member in struct:idecommon_s
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/main/
H A Dcfe_autoboot.c371 cfe_timer_t timer; local
397 TIMER_SET(timer,CFE_HZ);
398 while (!TIMER_EXPIRED(timer)) {
H A Dcfe_timer.c8 * timer is polled. The timer must be called often enough
16 * It is *not* a time-of-year clock. The timer is only used
162 * Initialize the timer module.
206 int64_t timer; local
208 TIMER_SET(timer,ticks);
209 while (!TIMER_EXPIRED(timer)) {
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/net/
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);
H A Dnet_dhcp.c466 int64_t timer; local
479 * Set a timer for the response
482 TIMER_SET(timer,DHCP_REQ_TIMEOUT);
488 while (!TIMER_EXPIRED(timer)) {
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)) {
/asus-wl-520gu-7.0.1.45/src/et/sys/
H A Det_cfe.c44 int64_t timer; /* one second watchdog timer */ member in struct:et_info
101 /* schedule one second watchdog timer */
102 TIMER_SET(et->timer, CFE_HZ / 2);
112 /* stop watchdog timer */
113 TIMER_CLEAR(et->timer);
524 if (TIMER_RUNNING(et->timer) &&
525 TIMER_EXPIRED(et->timer)) {
527 TIMER_SET(et->timer, CFE_HZ / 2);
H A Det_linux.c72 struct timer_list timer; /* one second watchdog timer */ member in struct:et_info
214 /* init 1 second watchdog timer */
215 init_timer(&et->timer);
216 et->timer.data = (ulong)dev;
217 et->timer.function = et_watchdog;
592 /* schedule one second watchdog timer */
593 et->timer.expires = jiffies + HZ;
594 add_timer(&et->timer);
612 /* stop watchdog timer */
[all...]
/asus-wl-520gu-7.0.1.45/src/include/
H A Dlinuxver.h325 #define del_timer_sync(timer) del_timer(timer)
H A Dsbhndmips.h42 uint32 timer; member in struct:__anon240
/asus-wl-520gu-7.0.1.45/src/linux/linux/Documentation/
H A Dsmp.tex276 interrupt is used for passing on slave timer messages from the processor
277 that receives the timer interrupt to the rest of the processors, so that
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/kernel/
H A Ddec21285.c208 struct timer_list *timer = dev_id; local
222 timer->expires = jiffies + HZ;
223 add_timer(timer);
228 printk(KERN_DEBUG "PCI: discard timer expired\n");
246 struct timer_list *timer = dev_id; local
260 timer->expires = jiffies + HZ;
261 add_timer(timer);
365 request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, SA_INTERRUPT, "Discard timer", NULL);

Completed in 290 milliseconds

1234567891011>>