Searched refs:path_stat (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
| H A D | file_descriptor.h | 201 inline file_status create_file_status(error_code& m_ec, path const& p, const StatT& path_stat, erro… in create_file_status() argument 214 auto const mode = path_stat.st_mode; in create_file_status() 232 fs_tmp.permissions(detail::posix_get_perms(path_stat)); in create_file_status() 236 inline file_status posix_stat(path const& p, StatT& path_stat, error_code* ec) { in posix_stat() argument 238 if (detail::stat(p.c_str(), &path_stat) == -1) in posix_stat() 240 return create_file_status(m_ec, p, path_stat, ec); in posix_stat() 244 StatT path_stat; in posix_stat() local 245 return posix_stat(p, path_stat, ec); in posix_stat() 248 inline file_status posix_lstat(path const& p, StatT& path_stat, error_code* ec) { in posix_lstat() argument 250 if (detail::lstat(p.c_str(), &path_stat) == -1) in posix_lstat() [all …]
|
| /freebsd/crypto/openssh/openbsd-compat/ |
| H A D | glob.c | 570 struct glob_path_stat *path_stat; local 575 if ((path_stat = calloc(n, sizeof(*path_stat))) == NULL) 578 path_stat[i].gps_path = pglob->gl_pathv[o + i]; 579 path_stat[i].gps_stat = pglob->gl_statv[o + i]; 581 qsort(path_stat, n, sizeof(*path_stat), compare_gps); 583 pglob->gl_pathv[o + i] = path_stat[i].gps_path; 584 pglob->gl_statv[o + i] = path_stat[i].gps_stat; 586 free(path_stat);
|
| /freebsd/contrib/pkgconf/libpkgconf/ |
| H A D | pkg.c | 79 struct stat path_stat; in pkg_get_parent_dir() local 80 while (!lstat(buf, &path_stat) && S_ISLNK(path_stat.st_mode)) in pkg_get_parent_dir()
|