Searched refs:to_st (Results 1 - 9 of 9) sorted by relevance

/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dsane_link.c48 struct stat to_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) {
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
H A Dops-common.h259 stat_type* from_st, stat_type* to_st,
318 stat_type* from_st, stat_type* to_st,
327 if (to_st == nullptr)
339 to_st = &st1;
341 else if (to_st == from_st)
342 to_st = nullptr;
344 if (to_st == nullptr)
347 t = make_file_status(*to_st);
376 if (to_st->st_dev == from_st->st_dev
377 && to_st
[all...]
H A Dstd-ops.cc276 stat_type* from_st, stat_type* to_st,
282 if (to_st == nullptr)
294 to_st = &st1;
296 else if (to_st == from_st)
297 to_st = nullptr;
299 if (to_st == nullptr)
302 t = make_file_status(*to_st);
331 if (to_st->st_dev == from_st->st_dev
332 && to_st->st_ino == from_st->st_ino)
348 if ((from_mtime <= file_time(*to_st, e
478 stat_type from_st, to_st; local
[all...]
H A Dops.cc263 stat_type from_st, to_st; variable
274 ? posix::lstat(to.c_str(), &to_st)
275 : posix::stat(to.c_str(), &to_st))
285 t = make_file_status(to_st);
289 && to_st.st_dev == from_st.st_dev && to_st.st_ino == from_st.st_ino)
329 auto ptr = exists(t) ? &to_st : &from_st;
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
H A Dops-common.h300 stat_type* from_st, stat_type* to_st,
359 stat_type* from_st, stat_type* to_st,
368 if (to_st == nullptr)
380 to_st = &st1;
382 else if (to_st == from_st)
383 to_st = nullptr;
385 if (to_st == nullptr)
388 t = make_file_status(*to_st);
417 if (to_st->st_dev == from_st->st_dev
418 && to_st
[all...]
H A Dops.cc269 stat_type from_st, to_st; variable
280 ? posix::lstat(to.c_str(), &to_st)
281 : posix::stat(to.c_str(), &to_st))
291 t = make_file_status(to_st);
295 && to_st.st_dev == from_st.st_dev && to_st.st_ino == from_st.st_ino)
335 auto ptr = exists(t) ? &to_st : &from_st;
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
H A Dfs_ops.cc323 stat_type from_st, to_st; local
334 ? posix::lstat(to.c_str(), &to_st)
335 : posix::stat(to.c_str(), &to_st))
345 t = make_file_status(to_st);
349 && to_st.st_dev == from_st.st_dev && to_st.st_ino == from_st.st_ino)
389 auto ptr = exists(t) ? &to_st : &from_st;
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
H A Dfs_ops.cc327 stat_type from_st, to_st; local
338 ? posix::lstat(to.c_str(), &to_st)
339 : posix::stat(to.c_str(), &to_st))
349 t = make_file_status(to_st);
353 && to_st.st_dev == from_st.st_dev && to_st.st_ino == from_st.st_ino)
393 auto ptr = exists(t) ? &to_st : &from_st;
/netbsd-current/external/apache2/llvm/dist/libcxx/src/filesystem/
H A Doperations.cpp919 file_status to_st = detail::posix_stat(to, to_stat_path, &m_ec); local
920 if (!status_known(to_st))
923 const bool to_exists = exists(to_st);
924 if (to_exists && !is_regular_file(to_st))

Completed in 175 milliseconds