Home
last modified time | relevance | path

Searched refs:times (Results 1 – 7 of 7) sorted by relevance

/system/core/toolbox/
Dtouch.c18 struct timespec specified_time, times[2]; in touch_main() local
69 times[0] = specified_time; in touch_main()
71 times[0].tv_nsec = UTIME_OMIT; in touch_main()
74 times[1] = specified_time; in touch_main()
76 times[1].tv_nsec = UTIME_OMIT; in touch_main()
80 …rintf(stderr, "times[0].tv_sec = %ld, times[0].tv_nsec = %ld\n", times[0].tv_sec, times[0].tv_nsec… in touch_main()
81 …rintf(stderr, "times[1].tv_sec = %ld, times[1].tv_nsec = %ld\n", times[1].tv_sec, times[1].tv_nsec… in touch_main()
85 return utimensat(AT_FDCWD, file, times, flags); in touch_main()
/system/core/sdcard/
Dsdcard.c576 struct timespec times[2]; in handle_setattr() local
602 times[0].tv_nsec = UTIME_OMIT; in handle_setattr()
603 times[1].tv_nsec = UTIME_OMIT; in handle_setattr()
606 times[0].tv_nsec = UTIME_NOW; in handle_setattr()
608 times[0].tv_sec = req->atime; in handle_setattr()
609 times[0].tv_nsec = req->atimensec; in handle_setattr()
614 times[1].tv_nsec = UTIME_NOW; in handle_setattr()
616 times[1].tv_sec = req->mtime; in handle_setattr()
617 times[1].tv_nsec = req->mtimensec; in handle_setattr()
621 handler->token, path, times[0].tv_sec, times[1].tv_sec); in handle_setattr()
[all …]
/system/extras/tests/sdcard/
DREADME40 only 1 process for 100 times (100 files will be written on the sdcard).
/system/core/logcat/
Devent.logtags57 # intrinsic event log times are wall-clock.
/system/core/init/
Dreadme.txt63 This is a device-critical service. If it exits more than four times in
/system/core/sh/
DTOUR111 *p++ = c; /* repeated as many times as needed */
116 STPUTC(c, p); /* repeated as many times as needed */
Deval.c1246 times(&tms); in timescmd()