Home
last modified time | relevance | path

Searched refs:timebuf (Results 1 – 2 of 2) sorted by relevance

/busybox-1.35.0/coreutils/
Dtouch.c85 struct timespec timebuf[2]; in touch_main() local
89 # define timebuf ((struct timespec*)NULL) in touch_main() macro
131 timebuf[0].tv_nsec = timebuf[1].tv_nsec = UTIME_NOW; in touch_main()
135 timebuf[0].tv_sec = stbuf.st_atime; in touch_main()
136 timebuf[1].tv_sec = stbuf.st_mtime; in touch_main()
137 timebuf[0].tv_nsec = stbuf.st_atim.tv_nsec; in touch_main()
138 timebuf[1].tv_nsec = stbuf.st_mtim.tv_nsec; in touch_main()
156 timebuf[1].tv_sec = timebuf[0].tv_sec = t; in touch_main()
157 timebuf[1].tv_nsec = timebuf[0].tv_nsec = 0; in touch_main()
163 timebuf[1].tv_nsec = UTIME_OMIT; in touch_main()
[all …]
/busybox-1.35.0/libbb/
Dlineedit.c1946 char timebuf[sizeof("HH:MM:SS")]; in parse_and_put_prompt() local
2021 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0'; in parse_and_put_prompt() local
2022 pbuf = timebuf; in parse_and_put_prompt()