Home
last modified time | relevance | path

Searched refs:stat_file (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dposix_compat.h189 inline int stat_file(const wchar_t* path, StatT* buf, DWORD flags) { in stat_file() function
197 inline int stat(const wchar_t* path, StatT* buf) { return stat_file(path, buf, 0); } in stat()
199 inline int lstat(const wchar_t* path, StatT* buf) { return stat_file(path, buf, FILE_FLAG_OPEN_REPA… in lstat()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dz_Linux_util.cpp2312 int stat_file = -1; local
2429 stat_file = open(stat_path.str, O_RDONLY);
2430 if (stat_file == -1) {
2460 len = read(stat_file, buffer, sizeof(buffer) - 1);
2478 close(stat_file);
2479 stat_file = -1;
2508 if (stat_file != -1) {
2509 close(stat_file);
/freebsd/sys/dev/bnxt/bnxt_re/
H A Dbnxt_re.h328 struct bnxt_re_dbg_file stat_file; member