| /OK3568_Linux_fs/u-boot/arch/arm/mach-bcm283x/ |
| H A D | mbox.c | 18 ulong endtime = get_timer(0) + TIMEOUT; in bcm2835_mbox_call_raw() local 21 debug("time: %lu timeout: %lu\n", get_timer(0), endtime); in bcm2835_mbox_call_raw() 34 if (get_timer(0) >= endtime) { in bcm2835_mbox_call_raw() 47 if (get_timer(0) >= endtime) { in bcm2835_mbox_call_raw() 65 if (get_timer(0) >= endtime) { in bcm2835_mbox_call_raw()
|
| /OK3568_Linux_fs/u-boot/arch/arm/mach-davinci/ |
| H A D | timer.c | 80 unsigned long long endtime; in __udelay() local 82 endtime = lldiv((unsigned long long)usec * gd->arch.timer_rate_hz, in __udelay() 84 endtime += get_ticks(); in __udelay() 86 while (get_ticks() < endtime) in __udelay()
|
| /OK3568_Linux_fs/u-boot/common/ |
| H A D | bootretry.c | 18 static uint64_t endtime; /* must be set, default is instant timeout */ variable 42 endtime = endtick(retry_time); in bootretry_reset_cmd_timeout() 48 if (retry_time >= 0 && get_ticks() > endtime) in bootretry_tstc_timeout()
|
| /OK3568_Linux_fs/u-boot/arch/arm/cpu/sa1100/ |
| H A D | timer.c | 34 ulong endtime; in udelay_masked() local 46 endtime = get_timer_masked () + tmo; in udelay_masked() 50 diff = endtime - now; in udelay_masked()
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/target/ |
| H A D | ssh.py | 233 endtime = starttime + timeout 236 while time.time() < endtime and not eof: 238 … logger.debug('Waiting for process output: time: %s, endtime: %s' % (time.time(), endtime)) 249 endtime = time.time() + timeout 265 endtime = time.time() - starttime 267 " running time: %d seconds." % (timeout, endtime))
|
| /OK3568_Linux_fs/u-boot/arch/arm/mach-at91/arm920t/ |
| H A D | timer.c | 94 u32 endtime; in udelay_masked() local 101 endtime = get_timer_raw() + tmo; in udelay_masked() 105 diff = endtime - now; in udelay_masked()
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/ |
| H A D | qemutinyrunner.py | 101 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 D | qemurunner.py | 273 endtime = time.time() + self.runqemutime 274 while not self.is_alive() and time.time() < endtime: 336 endtime = time.time() + self.runqemutime 337 while not os.path.exists(qmp_port) and self.is_alive() and time.time() < endtime: 391 (time.time() - (endtime - self.runqemutime), 444 endtime = time.time() + self.boottime 451 while time.time() < endtime and not stopread: 479 (time.time() - (endtime - self.boottime), 490 if time.time() >= endtime:
|
| H A D | sshcontrol.py | 53 endtime = self.starttime + timeout 55 while time.time() < endtime and not eof: 66 endtime = time.time() + timeout
|
| /OK3568_Linux_fs/u-boot/arch/arm/cpu/arm926ejs/armada100/ |
| H A D | timer.c | 90 ulong endtime; in __udelay() local 93 endtime = get_timer_masked() + delayticks; in __udelay() 95 while (get_timer_masked() < endtime); in __udelay()
|
| /OK3568_Linux_fs/u-boot/arch/arm/cpu/arm920t/imx/ |
| H A D | timer.c | 52 ulong endtime = get_timer_masked() + usec; in udelay_masked() local 57 diff = endtime - now; in udelay_masked()
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | async.c | 287 ktime_t starttime, delta, endtime; in async_synchronize_cookie_domain() local 297 endtime = ktime_get(); in async_synchronize_cookie_domain() 298 delta = ktime_sub(endtime, starttime); in async_synchronize_cookie_domain()
|
| /OK3568_Linux_fs/kernel/net/sunrpc/auth_gss/ |
| H A D | gss_krb5_mech.c | 250 ctx->endtime = (time64_t)time32; in gss_import_v1_context() 484 ctx->endtime = (time64_t)time32; in gss_import_v2_context() 546 time64_t *endtime, in gss_import_sec_context_kerberos() argument 564 if (endtime) in gss_import_sec_context_kerberos() 565 *endtime = ctx->endtime; in gss_import_sec_context_kerberos()
|
| H A D | gss_krb5_unseal.c | 129 if (now > ctx->endtime) in gss_verify_mic_v1() 198 if (now > ctx->endtime) in gss_verify_mic_v2()
|
| H A D | gss_krb5_seal.c | 162 return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_get_mic_v1() 203 return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_get_mic_v2()
|
| H A D | gss_krb5_wrap.c | 243 return (kctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_wrap_kerberos_v1() 323 if (now > kctx->endtime) in gss_unwrap_kerberos_v1() 456 return (kctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_wrap_kerberos_v2() 534 if (now > kctx->endtime) in gss_unwrap_kerberos_v2()
|
| H A D | gss_mech_switch.c | 356 time64_t *endtime, in gss_import_sec_context() argument 364 *ctx_id, endtime, gfp_mask); in gss_import_sec_context()
|
| /OK3568_Linux_fs/kernel/include/linux/sunrpc/ |
| H A D | gss_api.h | 52 time64_t *endtime, 114 time64_t *endtime,
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/ |
| H A D | ltp_compliance.py | 66 endtime = time.time() 76 runtime = int(endtime-starttime)
|
| H A D | ltp_stress.py | 66 endtime = time.time() 75 runtime = int(endtime-starttime)
|
| H A D | ltp.py | 71 endtime = time.time() 89 runtime = int(endtime-starttime)
|
| H A D | systemd.py | 67 endtime = time.time() + (60 * 2) 72 if time.time() >= endtime:
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/ |
| H A D | runner.py | 44 self.endtime = {} 63 self.endtime[test.id()] = time.time() 186 if case.id() in self.starttime and case.id() in self.endtime: 187 duration = self.endtime[case.id()] - self.starttime[case.id()]
|
| /OK3568_Linux_fs/kernel/include/keys/ |
| H A D | rxrpc-type.h | 63 u64 endtime; /* time at which auth token expired */ member
|
| /OK3568_Linux_fs/kernel/net/rxrpc/ |
| H A D | key.c | 481 rxk5->endtime = be64_to_cpup((const __be64 *) xdr); in rxrpc_preparse_xdr_rxk5() 490 rxk5->authtime, rxk5->starttime, rxk5->endtime, in rxrpc_preparse_xdr_rxk5() 537 expiry = rxrpc_u32_to_time64(token->k5->endtime); in rxrpc_preparse_xdr_rxk5() 1203 ENCODE64(token->k5->endtime); in rxrpc_read()
|