Lines Matching refs:fullpath
177 let fullpath = tempdir.path().join(filename);
178 File::create(&fullpath).unwrap();
190 let file_stat1 = stat(&fullpath).unwrap();
199 let file_stat2 = stat(&fullpath).unwrap();
227 let fullpath = tempdir.path().join("file");
228 drop(File::create(&fullpath).unwrap());
230 utimes(&fullpath, &TimeVal::seconds(9990), &TimeVal::seconds(5550))
232 assert_times_eq(9990, 5550, &fs::metadata(&fullpath).unwrap());
246 let fullpath = tempdir.path().join("symlink");
248 symlink(&target, &fullpath).unwrap();
251 lutimes(&fullpath, &TimeVal::seconds(4560), &TimeVal::seconds(1230))
253 assert_times_eq(4560, 1230, &fs::symlink_metadata(&fullpath).unwrap());
272 let fullpath = tempdir.path().join("file");
273 drop(File::create(&fullpath).unwrap());
275 let fd = fcntl::open(&fullpath, fcntl::OFlag::empty(), stat::Mode::empty())
279 assert_times_eq(10, 20, &fs::metadata(&fullpath).unwrap());
288 let fullpath = tempdir.path().join(filename);
289 drop(File::create(&fullpath).unwrap());
303 assert_times_eq(12345, 678, &fs::metadata(&fullpath).unwrap());
315 assert_times_eq(500, 800, &fs::metadata(&fullpath).unwrap());