| /src/external/ibm-public/postfix/dist/src/util/ |
| sane_link.c | 47 struct stat from_st; local 61 if (stat(from, &from_st) >= 0 && stat(to, &to_st) >= 0 62 && from_st.st_dev == to_st.st_dev 63 && from_st.st_ino == to_st.st_ino) {
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/ |
| ops.cc | 284 stat_type from_st, to_st; variable 288 ? posix::lstat(from.c_str(), &from_st) 289 : posix::stat(from.c_str(), &from_st)) 307 f = make_file_status(from_st); 310 && fs::equiv_files(from.c_str(), from_st, to.c_str(), to_st, ec)) 347 copy_file_options(options), &from_st, nullptr, ec); 350 auto ptr = exists(t) ? &to_st : &from_st; 352 &from_st, ptr, ec);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/ |
| fs_ops.cc | 327 stat_type from_st, to_st; local 331 ? posix::lstat(from.c_str(), &from_st) 332 : posix::stat(from.c_str(), &from_st)) 350 f = make_file_status(from_st); 353 && to_st.st_dev == from_st.st_dev && to_st.st_ino == from_st.st_ino) 390 copy_file_options(options), &from_st, nullptr, ec); 393 auto ptr = exists(t) ? &to_st : &from_st; 395 &from_st, ptr, ec);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/ |
| ops.cc | 269 stat_type from_st, to_st; variable 273 ? posix::lstat(from.c_str(), &from_st) 274 : posix::stat(from.c_str(), &from_st)) 292 f = make_file_status(from_st); 295 && to_st.st_dev == from_st.st_dev && to_st.st_ino == from_st.st_ino) 332 copy_file_options(options), &from_st, nullptr, ec); 335 auto ptr = exists(t) ? &to_st : &from_st; 337 &from_st, ptr, ec);
|
| std-ops.cc | 276 stat_type* from_st, stat_type* to_st, 296 else if (to_st == from_st) 304 if (from_st == nullptr) 312 from_st = &st2; 314 f = make_file_status(*from_st); 331 if (to_st->st_dev == from_st->st_dev 332 && to_st->st_ino == from_st->st_ino) 345 const auto from_mtime = file_time(*from_st, ec); 391 if (::fchmod(out.fd, from_st->st_mode)) 393 if (::fchmodat(AT_FDCWD, to, from_st->st_mode, 0) 478 stat_type from_st, to_st; local [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ |
| fs_ops.cc | 327 stat_type from_st, to_st; local 331 ? posix::lstat(from.c_str(), &from_st) 332 : posix::stat(from.c_str(), &from_st)) 350 f = make_file_status(from_st); 353 && fs::equiv_files(from.c_str(), from_st, to.c_str(), to_st, ec)) 390 copy_file_options(options), &from_st, nullptr, ec); 393 auto ptr = exists(t) ? &to_st : &from_st; 395 &from_st, ptr, ec);
|