Searched refs:time (Results 1 – 25 of 84) sorted by relevance
1234
/busybox-1.35.0/scripts/ |
D | bloat-o-meter | 40 import time 84 start_t1 = int(time.time() * 1e9) 87 end_t1 = int(time.time() * 1e9) 88 start_t2 = int(time.time() * 1e9) 91 end_t2 = int(time.time() * 1e9) 92 start_t3 = int(time.time() * 1e9) 125 end_t3 = int(time.time() * 1e9)
|
/busybox-1.35.0/util-linux/ |
D | rtcwake.c | 87 wake.time.tm_sec = ptm->tm_sec; in setup_alarm() 88 wake.time.tm_min = ptm->tm_min; in setup_alarm() 89 wake.time.tm_hour = ptm->tm_hour; in setup_alarm() 90 wake.time.tm_mday = ptm->tm_mday; in setup_alarm() 91 wake.time.tm_mon = ptm->tm_mon; in setup_alarm() 92 wake.time.tm_year = ptm->tm_year; in setup_alarm() 94 wake.time.tm_wday = -1; in setup_alarm() 95 wake.time.tm_yday = -1; in setup_alarm() 96 wake.time.tm_isdst = -1; in setup_alarm() 102 xioctl(fd, RTC_ALM_SET, &wake.time); in setup_alarm() [all …]
|
D | rdate.c | 70 time_t cur = time(NULL); in askremotedate() 96 if (time(NULL) == remote_time) in rdate_main()
|
D | mkfs_ext2.txt | 36 Last mount time: n/a Last mount time: n… 37 Last write time: Wed Oct 21 13:40:55 2009 Last write time: W…
|
D | mkfs_vfat.c | 111 uint16_t time; /* 016 time */ member 267 volume_id = time(NULL); in mkfs_vfat_main() 562 STORE_LE(de->time, t); in mkfs_vfat_main() 565 de->ctime = de->time; in mkfs_vfat_main()
|
/busybox-1.35.0/debianutils/ |
D | pipe_progress.c | 33 time_t t = time(NULL); in pipe_progress_main() 37 time_t new_time = time(NULL); in pipe_progress_main()
|
/busybox-1.35.0/libbb/ |
D | bb_do_delay.c | 21 end = time(NULL) + LOGIN_FAIL_DELAY; in pause_after_failed_login() 25 diff = end - time(NULL); in pause_after_failed_login()
|
D | isqrt.c | 40 unsigned long long n = argv[1] ? strtoull(argv[1], NULL, 0) : time(NULL); in main()
|
D | utmp.c | 32 utent.ut_tv.tv_sec = time(NULL); in write_new_utmp() 120 utent.ut_tv.tv_sec = time(NULL); in update_utmp()
|
D | README | 6 information (which is now lost in the mists of time). If you see something
|
D | login.c | 28 time(&t); in print_login_issue()
|
/busybox-1.35.0/shell/hush_test/hush-misc/ |
D | tickquote1.tests | 1 # UNFIXED BUG: hush does not parse embedded `cmd` at embedding document parse time
|
/busybox-1.35.0/miscutils/ |
D | adjtimex.c | 170 (long)txc.time.tv_sec, (long)txc.time.tv_usec, in adjtimex_main()
|
/busybox-1.35.0/testsuite/date/ |
D | date-@-works | 1 # Tests for time_t value (unix time format)
|
D | date-R-works | 1 # When different date's use time() and clock_gettime(),
|
/busybox-1.35.0/include/ |
D | rtc_.h | 46 struct linux_rtc_time time; /* time the alarm is set to */ member
|
/busybox-1.35.0/docs/ |
D | tar_pax.txt | 52 The file access time for the following file(s), equivalent to 54 as described by the stat() function. The access time shall be 113 The file modification time of the following file(s), 117 block(s). The modification time shall be restored if the process 189 time in seconds since the Epoch. If a period ( '.' ) decimal point 192 copy mode, the pax utility shall truncate the time of a file to 194 file time. In write or copy mode, the pax utility shall output a 195 time exactly if it can be represented exactly as a decimal number, 197 time shall be recovered if the file is extracted on a system whose 198 underlying implementation supports the same time granularity.
|
/busybox-1.35.0/shell/ |
D | random.c | 30 # define monotonic_us() time(NULL)
|
/busybox-1.35.0/archival/ |
D | Config.src | 35 This option reduces decompression time by about 25% at the cost of
|
/busybox-1.35.0/procps/ |
D | ps.posix | 120 pcpu The ratio of CPU time used recently to CPU time available in the 122 "recently" in this context is unspecified. The CPU time avail- 130 etime In the POSIX locale, the elapsed time since the process was 133 time In the POSIX locale, the cumulative CPU time of the process in 165 group GROUP time TIME
|
D | uptime.c | 65 time(¤t_secs); in uptime_main()
|
/busybox-1.35.0/coreutils/ |
D | who.c | 91 t = time(NULL) - t; in idle_string()
|
/busybox-1.35.0/networking/udhcp/ |
D | dumpleases.c | 67 curr = time(NULL); in dumpleases_main()
|
D | dhcpd.c | 139 leasetime_t oldest_time = time(NULL); in oldest_expired_lease() 212 oldest->expires = time(NULL) + leasetime; in add_lease() 221 return (lease->expires < (leasetime_t) time(NULL)); in is_expired_lease() 469 curr = written_at = time(NULL); in write_leases() 523 time_passed = time(NULL) - written_at; in read_leases() 1230 lease->expires = time(NULL) + server_data.decline_time; in udhcpd_main() 1248 lease->expires = time(NULL); in udhcpd_main()
|
/busybox-1.35.0/init/ |
D | halt.c | 109 utmp.ut_tv.tv_sec = time(NULL); in write_wtmp()
|
1234