Searched refs:timeout (Results 501 - 525 of 2959) sorted by relevance

<<21222324252627282930>>

/linux-master/tools/testing/kunit/
H A Dkunit.py56 timeout: int
114 timeout=request.timeout,
133 timeout=request.timeout,
190 timeout=request.timeout,
366 parser.add_argument('--timeout',
451 timeout=cli_args.timeout,
[all...]
H A Dkunit_tool_test.py616 args=None, build_dir='.kunit', filter_glob='', filter='', filter_action=None, timeout=300)
624 args=None, build_dir='.kunit', filter_glob='', filter='', filter_action=None, timeout=300)
648 args=None, build_dir='.kunit', filter_glob='', filter='', filter_action=None, timeout=300)
689 args=None, build_dir='.kunit', filter_glob='filter_glob', filter='', filter_action=None, timeout=300)
692 timeout = 3453
693 kunit.main(['exec', '--timeout', str(timeout)])
695 args=None, build_dir='.kunit', filter_glob='', filter='', filter_action=None, timeout=timeout)
699 timeout
[all...]
/linux-master/drivers/hwmon/
H A Dabituguru3.c636 int timeout = ABIT_UGURU3_WAIT_TIMEOUT; local
640 timeout--;
641 if (timeout == 0)
647 if (timeout == 1)
657 int timeout = ABIT_UGURU3_WAIT_TIMEOUT; local
661 timeout--;
662 if (timeout == 0)
668 if (timeout == 1)
680 int x, timeout = ABIT_UGURU3_SYNCHRONIZE_TIMEOUT; local
684 ABIT_UGURU3_DEBUG("synchronize timeout durin
[all...]
/linux-master/drivers/net/ethernet/broadcom/bnxt/
H A Dbnxt_hwrm.c83 ctx->timeout = bp->hwrm_cmd_timeout ?: DFLT_HWRM_CMD_TIMEOUT;
126 * hwrm_req_timeout() - Set the completion timeout for the request.
128 * @req: The request to set the timeout.
129 * @timeout: The timeout in milliseconds.
131 * Set the timeout associated with the request for subsequent calls to
133 * timeout than the default.
135 void hwrm_req_timeout(struct bnxt *bp, void *req, unsigned int timeout) argument
140 ctx->timeout = timeout;
467 unsigned int i, timeout, tmo_count; local
[all...]
/linux-master/drivers/acpi/apei/
H A Derst.c107 u64 timeout = FIRMWARE_TIMEOUT; local
110 timeout = ((erst_erange.timings & ERST_EXEC_TIMING_MAX_MASK) >>
112 if (timeout < FIRMWARE_TIMEOUT)
113 timeout = FIRMWARE_TIMEOUT;
115 return timeout;
212 u64 timeout; local
215 timeout = erst_get_timeout();
232 if (erst_timedout(&timeout, stall_time * NSEC_PER_USEC))
651 u64 timeout; local
655 timeout
692 u64 timeout; local
737 u64 timeout; local
[all...]
/linux-master/drivers/watchdog/
H A Dwatchdog_dev.c80 unsigned int t = wdd->timeout * 1000;
86 * - The driver provided a value for the maximum hardware timeout, and
89 * - Userspace requests a longer timeout than the hardware can handle.
102 unsigned int timeout_ms = wdd->timeout * 1000;
118 * To ensure that the watchdog times out wdd->timeout seconds
120 * worker ping has to come in hw_heartbeat_ms before this timeout.
360 * watchdog_set_timeout - set the watchdog timer timeout
361 * @wdd: The watchdog device to set the timeout for
362 * @timeout: Timeout to set in seconds
369 unsigned int timeout)
368 watchdog_set_timeout(struct watchdog_device *wdd, unsigned int timeout) argument
401 watchdog_set_pretimeout(struct watchdog_device *wdd, unsigned int timeout) argument
[all...]
H A Di6300esb.c60 #define ESB_WDT_REBOOT (0x01 << 5) /* Enable reboot on timeout */
62 #define ESB_WDT_INTTYPE (0x03 << 0) /* Interrupt type on timer1 timeout */
66 #define ESB_WDT_RELOAD (0x01 << 8) /* prevent timeout */
183 wdd->timeout = time;
285 /* And set the correct timeout value */
286 esb_timer_set_heartbeat(&edev->wdd, edev->wdd.timeout);
309 edev->wdd.timeout = ESB_HEARTBEAT_DEFAULT;
322 edev->wdd.timeout, nowayout);
H A Djz4740_wdt.c71 wdt_dev->timeout = new_timeout;
87 jz4740_wdt_set_timeout(wdt_dev, wdt_dev->timeout);
109 wdt_dev->timeout = 0;
171 jz4740_wdt->timeout = clamp(heartbeat,
/linux-master/drivers/mmc/host/
H A Dmmc_spi.c156 static int mmc_spi_skip(struct mmc_spi_host *host, unsigned long timeout, argument
177 } while (time_is_after_jiffies(start + timeout));
182 mmc_spi_wait_unbusy(struct mmc_spi_host *host, unsigned long timeout) argument
184 return mmc_spi_skip(host, timeout, sizeof(host->data->status), 0);
187 static int mmc_spi_readtoken(struct mmc_spi_host *host, unsigned long timeout) argument
189 return mmc_spi_skip(host, timeout, 1, 0xff);
594 unsigned long timeout)
667 return mmc_spi_wait_unbusy(host, timeout);
688 unsigned long timeout)
704 status = mmc_spi_readtoken(host, timeout);
593 mmc_spi_writeblock(struct mmc_spi_host *host, struct spi_transfer *t, unsigned long timeout) argument
687 mmc_spi_readblock(struct mmc_spi_host *host, struct spi_transfer *t, unsigned long timeout) argument
782 unsigned long timeout; local
[all...]
/linux-master/drivers/net/fjes/
H A Dfjes_hw.c57 int timeout; local
63 timeout = FJES_DEVICE_RESET_TIMEOUT * 1000;
65 while ((dctl.bits.reset == 1) && (timeout > 0)) {
68 timeout -= 1000;
71 return timeout > 0 ? 0 : -EIO;
399 int timeout = FJES_COMMAND_REQ_TIMEOUT * 1000; local
408 timeout = FJES_COMMAND_REQ_TIMEOUT * 1000;
411 while ((cs.bits.complete != 1) && timeout > 0) {
414 timeout -= 1000;
419 else if (timeout <
505 int timeout; local
613 int timeout; local
[all...]
/linux-master/drivers/i2c/busses/
H A Di2c-pxa.c91 /* need a longer timeout if we're dealing with the fact we may well be
427 int timeout = DEF_TIMEOUT; local
436 timeout += 4;
438 if (!timeout--)
452 unsigned long timeout = jiffies + HZ*4; local
454 while (time_before(jiffies, timeout)) {
505 unsigned long timeout = jiffies + HZ*1; local
511 while (time_before(jiffies, timeout)) {
643 int timeout; local
670 timeout
755 int timeout; local
1169 long timeout = 2 * DEF_TIMEOUT; local
1195 unsigned long timeout = 500000; /* 5 seconds */ local
[all...]
H A Di2c-acorn.c76 .timeout = HZ,
/linux-master/drivers/net/ethernet/ti/
H A Dcpsw_sl.c258 unsigned long timeout = jiffies + msecs_to_jiffies(tmo); local
268 time_after(timeout, jiffies));
315 unsigned long timeout = jiffies + msecs_to_jiffies(tmo); local
320 sl->idle_mask) && time_after(timeout, jiffies));
/linux-master/include/linux/
H A Dlp.h23 #define LP_CHAR(minor) lp_table[(minor)].chars /* busy timeout */
62 long timeout; member in struct:lp_struct
/linux-master/drivers/media/pci/mantis/
H A Dmantis_link.h23 u32 timeout; member in struct:mantis_slot
/linux-master/drivers/input/touchscreen/
H A Dwm9705.c212 int timeout = 5 * delay; local
233 && timeout) {
235 timeout--;
238 if (timeout == 0) {
239 /* If PDEN is set, we can get a timeout when pen goes up */
243 dev_dbg(wm->dev, "adc sample timeout");
/linux-master/arch/arm/mach-orion5x/
H A Dterastation_pro2-setup.c164 int timeout; local
167 timeout = 10;
170 if (--timeout == 0)
175 if (timeout == 0)
/linux-master/drivers/net/wireless/ti/wl18xx/
H A Devent.h107 bool *timeout);
/linux-master/drivers/net/wireless/ti/wl12xx/
H A Devent.h93 bool *timeout);
/linux-master/drivers/staging/greybus/Documentation/firmware/
H A Dauthenticate.c31 unsigned int timeout = 10000; local
/linux-master/arch/arm/mach-bcm/
H A Dplatsmp.c165 bool timeout = false; local
200 while (!timeout && readl_relaxed(boot_reg) == boot_val)
201 timeout = local_clock() - start_clock > SECONDARY_TIMEOUT_NS;
205 if (!timeout)
208 pr_err("timeout waiting for cpu %u to start\n", cpu_id);
/linux-master/include/linux/mfd/wm831x/
H A Dpdata.h36 int timeout; /** Charge cycle timeout, in minutes */ member in struct:wm831x_battery_pdata
/linux-master/drivers/usb/storage/
H A Dtransport.h74 void *data, u16 size, int timeout);
/linux-master/include/uapi/linux/
H A Ddlm_device.h41 __u64 timeout; member in struct:dlm_lock_params
/linux-master/drivers/net/
H A Dsb1000.c265 unsigned long timeout; local
268 timeout = jiffies + TimeOutJiffies;
274 if (time_after_eq(jiffies, timeout)) {
275 printk(KERN_WARNING "%s: card_wait_for_busy_clear timeout\n",
289 unsigned long timeout; local
292 timeout = jiffies + TimeOutJiffies;
298 if (time_after_eq(jiffies, timeout)) {
299 printk(KERN_WARNING "%s: card_wait_for_ready timeout\n",
366 unsigned long timeout; local
368 timeout
392 unsigned long timeout; local
[all...]

Completed in 286 milliseconds

<<21222324252627282930>>