Lines Matching refs:times
23 let times = Timestamps {
33 utimensat(&dir, "foo", ×, AtFlags::empty()).unwrap();
37 assert_eq!(times.last_modification.tv_sec as u64, after.st_mtime as u64);
40 times.last_modification.tv_nsec as u64,
45 times.last_modification.tv_nsec as u64,
48 assert!(times.last_access.tv_sec as u64 >= after.st_atime as u64);
51 times.last_access.tv_sec as u64 > after.st_atime as u64
52 || times.last_access.tv_nsec as u64 >= after.st_atime_nsec as u64
56 times.last_access.tv_sec as u64 > after.st_atime as u64
57 || times.last_access.tv_nsec as u64 >= after.st_atimensec as u64
75 let times = Timestamps {
86 utimensat(&dir, "foo", ×, AtFlags::empty()).unwrap_err(),
113 let times = Timestamps {
124 utimensat(&foo, "bar", ×, AtFlags::empty()).unwrap_err(),