Searched refs:file_stats (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Host/common/
H A DFile.cpp322 struct stat file_stats; local
323 if (::stat (path, &file_stats) == -1)
328 return file_stats.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
347 struct stat file_stats; local
348 if (::fstat (fd, &file_stats) == -1)
353 return file_stats.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
727 struct stat file_stats; local
728 if (::fstat (fd, &file_stats) == 0)
730 if (file_stats.st_size > offset)
732 const size_t bytes_left = file_stats
[all...]
H A DFileSpec.cpp560 struct stat file_stats; local
561 return GetFileStats (this, &file_stats);
620 struct stat file_stats; local
621 if (GetFileStats (this, &file_stats))
622 return file_stats.st_size;
629 struct stat file_stats; local
630 if (GetFileStats (this, &file_stats))
632 mode_t file_type = file_stats.st_mode & S_IFMT;
663 struct stat file_stats; local
664 if (GetFileStats (this, &file_stats))
[all...]
H A DHost.cpp2197 struct stat file_stats; local
2198 if (::stat (path, &file_stats) == 0)
2202 file_permissions = file_stats.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
/freebsd-10.2-release/contrib/ntp/lib/isc/unix/
H A Dfile.c89 file_stats(const char *file, struct stat *stats) { function
109 result = file_stats(file, &stats);
349 return (ISC_TF(file_stats(pathname, &stats) == ISC_R_SUCCESS));
485 result = file_stats(filename, &sb);
/freebsd-10.2-release/contrib/ntp/lib/isc/win32/
H A Dfile.c126 file_stats(const char *file, struct stat *stats) { function
398 return (ISC_TF(file_stats(pathname, &stats) == ISC_R_SUCCESS));
556 result = file_stats(filename, &sb);

Completed in 61 milliseconds