Home
last modified time | relevance | path

Searched refs:endtime (Results 1 – 25 of 31) sorted by relevance

12

/openbmc/u-boot/arch/arm/mach-bcm283x/
H A Dmbox.c17 ulong endtime = get_timer(0) + TIMEOUT; in bcm2835_mbox_call_raw() local
20 debug("time: %lu timeout: %lu\n", get_timer(0), endtime); in bcm2835_mbox_call_raw()
33 if (get_timer(0) >= endtime) { in bcm2835_mbox_call_raw()
46 if (get_timer(0) >= endtime) { in bcm2835_mbox_call_raw()
64 if (get_timer(0) >= endtime) { in bcm2835_mbox_call_raw()
/openbmc/u-boot/common/
H A Dbootretry.c17 static uint64_t endtime; /* must be set, default is instant timeout */ variable
41 endtime = endtick(retry_time); in bootretry_reset_cmd_timeout()
47 if (retry_time >= 0 && get_ticks() > endtime) in bootretry_tstc_timeout()
/openbmc/u-boot/arch/arm/cpu/sa1100/
H A Dtimer.c28 ulong endtime; in __udelay() local
40 endtime = get_timer_masked () + tmo; in __udelay()
44 diff = endtime - now; in __udelay()
/openbmc/u-boot/arch/arm/mach-davinci/
H A Dtimer.c79 unsigned long long endtime; in __udelay() local
81 endtime = lldiv((unsigned long long)usec * gd->arch.timer_rate_hz, in __udelay()
83 endtime += get_ticks(); in __udelay()
85 while (get_ticks() < endtime) in __udelay()
/openbmc/u-boot/arch/arm/mach-at91/arm920t/
H A Dtimer.c88 u32 endtime; in __udelay() local
95 endtime = get_timer_raw() + tmo; in __udelay()
99 diff = endtime - now; in __udelay()
/openbmc/openbmc/poky/meta/lib/oeqa/core/target/
H A Dssh.py224 endtime = starttime + timeout
239 endtime = time.time() + timeout
247 if time.time() >= endtime:
248 … logger.debug('SSHCall has timeout! Time: %s, endtime: %s' % (time.time(), endtime))
266 endtime = time.time() - starttime
268 " running time: %d seconds." % (timeout, endtime))
/openbmc/u-boot/arch/arm/cpu/arm920t/imx/
H A Dtimer.c51 ulong endtime = get_timer_masked() + usec; in __udelay() local
56 diff = endtime - now; in __udelay()
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dqemutinyrunner.py101 endtime = time.time() + self.runqemutime
102 while not self.is_alive() and time.time() < endtime:
122 endtime = time.time()+timeout
123 while time.time()<endtime and not stopread:
H A Dsshcontrol.py53 endtime = self.starttime + timeout
55 while time.time() < endtime and not eof:
66 endtime = time.time() + timeout
H A Dqemurunner.py280 endtime = time.time() + self.runqemutime
281 while not self.is_alive() and time.time() < endtime:
342 endtime = time.time() + self.runqemutime
343 while not os.path.exists(qmp_port) and self.is_alive() and time.time() < endtime:
397 (time.time() - (endtime - self.runqemutime),
451 endtime = time.time() + self.boottime
458 while time.time() < endtime and not stopread:
494 (time.time() - (endtime - self.boottime),
505 if time.time() >= endtime:
/openbmc/u-boot/arch/arm/cpu/arm926ejs/armada100/
H A Dtimer.c89 ulong endtime; in __udelay() local
92 endtime = get_timer_masked() + delayticks; in __udelay()
94 while (get_timer_masked() < endtime); in __udelay()
/openbmc/qemu/tests/qemu-iotests/
H A Dtestrunner.py165 endtime: Optional[str] = None, status: str = '...',
194 if endtime:
195 endtime = f'[{endtime}]'
197 endtime = ''
359 starttime=start, endtime=end,
/openbmc/linux/include/linux/sunrpc/
H A Dgss_api.h52 time64_t *endtime,
114 time64_t *endtime,
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dltp_compliance.py66 endtime = time.time()
76 runtime = int(endtime-starttime)
H A Dltp_stress.py66 endtime = time.time()
75 runtime = int(endtime-starttime)
H A Dltp.py75 endtime = time.time()
100 sections['duration'] = int(endtime-starttime)
H A Dsystemd.py70 endtime = time.time() + (60 * 2)
75 if time.time() >= endtime:
/openbmc/linux/net/sunrpc/auth_gss/
H A Dgss_krb5_mech.c412 ctx->endtime = (time64_t)time32; in gss_import_v2_context()
470 time64_t *endtime, gfp_t gfp_mask) in gss_krb5_import_sec_context() argument
488 if (endtime) in gss_krb5_import_sec_context()
489 *endtime = ctx->endtime; in gss_krb5_import_sec_context()
H A Dgss_krb5_wrap.c138 return (kctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_krb5_wrap_v2()
213 if (now > kctx->endtime) in gss_krb5_unwrap_v2()
H A Dgss_krb5_unseal.c119 if (now > ctx->endtime) in gss_krb5_verify_mic_v2()
H A Dgss_krb5_seal.c132 return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_krb5_get_mic_v2()
H A Dgss_mech_switch.c356 time64_t *endtime, in gss_import_sec_context() argument
364 *ctx_id, endtime, gfp_mask); in gss_import_sec_context()
/openbmc/openbmc/poky/meta/lib/oeqa/core/
H A Drunner.py44 self.endtime = {}
64 self.endtime[test.id()] = time.time()
187 if case.id() in self.starttime and case.id() in self.endtime:
188 duration = self.endtime[case.id()] - self.starttime[case.id()]
/openbmc/openbmc-test-automation/tools/ct_metrics/
H A Dgen_csv_results.py239 print("Test End Time:\t\t %s" % result.suite.endtime)
343 l_etime = xml_to_csv_time(testcase.endtime)
/openbmc/qemu/tests/vm/
H A Dbasevm.py440 endtime = starttime + datetime.timedelta(seconds=seconds)
442 while datetime.datetime.now() < endtime:
449 seconds = (endtime - datetime.datetime.now()).total_seconds()

12