Home
last modified time | relevance | path

Searched defs:Stat (Results 1 – 25 of 30) sorted by relevance

12

/third_party/rust/crates/rustix/src/io/
Dprocfs.rs49 proc_stat: Option<&Stat>, in check_proc_entry()
50 ) -> io::Result<Stat> { in check_proc_entry()
59 entry_stat: Stat, in check_proc_entry_with_stat()
60 proc_stat: Option<&Stat>, in check_proc_entry_with_stat()
61 ) -> io::Result<Stat> { in check_proc_entry_with_stat()
131 stat: &Stat, in check_proc_subdir()
132 proc_stat: Option<&Stat>, in check_proc_subdir()
148 fn check_proc_file(stat: &Stat, proc_stat: Option<&Stat>) -> io::Result<()> { in check_proc_file()
159 fn check_proc_nonroot(stat: &Stat, proc_stat: Option<&Stat>) -> io::Result<()> { in check_proc_nonroot()
294 fn new_static_fd(fd: OwnedFd, stat: Stat) -> (OwnedFd, Stat) { in new_static_fd() argument
[all …]
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/
Dtypes.rs552 pub struct Stat { struct
576 pub type Stat = linux_raw_sys::general::stat; argument
Dsyscalls.rs411 pub(crate) fn fstat(fd: BorrowedFd<'_>) -> io::Result<Stat> { in fstat()
430 fn fstat_old(fd: BorrowedFd<'_>) -> io::Result<Stat> { in fstat_old()
447 pub(crate) fn stat(filename: &CStr) -> io::Result<Stat> { in stat()
477 fn stat_old(filename: &CStr) -> io::Result<Stat> { in stat_old()
506 pub(crate) fn statat(dirfd: BorrowedFd<'_>, filename: &CStr, flags: AtFlags) -> io::Result<Stat> { in statat()
531 fn statat_old(dirfd: BorrowedFd<'_>, filename: &CStr, flags: AtFlags) -> io::Result<Stat> { in statat_old()
560 pub(crate) fn lstat(filename: &CStr) -> io::Result<Stat> { in lstat()
590 fn lstat_old(filename: &CStr) -> io::Result<Stat> { in lstat_old()
620 fn statx_to_stat(x: crate::fs::Statx) -> io::Result<Stat> { in statx_to_stat()
655 fn stat_to_stat(s64: linux_raw_sys::general::stat64) -> io::Result<Stat> { in stat_to_stat()
[all …]
Ddir.rs161 pub fn stat(&self) -> io::Result<Stat> { in stat()
/third_party/rust/crates/rustix/src/backend/libc/fs/
Dtypes.rs881 pub type Stat = c::stat; typedef
895 pub type Stat = c::stat64; typedef
911 pub struct Stat { struct
912 pub st_dev: u64,
913 pub st_mode: u32,
914 pub st_nlink: u32,
915 pub st_uid: u32,
916 pub st_gid: u32,
917 pub st_rdev: u64,
918 pub st_size: i64,
[all …]
Dsyscalls.rs402 pub(crate) fn statat(dirfd: BorrowedFd<'_>, path: &CStr, flags: AtFlags) -> io::Result<Stat> { in statat()
439 fn statat_old(dirfd: BorrowedFd<'_>, path: &CStr, flags: AtFlags) -> io::Result<Stat> { in statat_old()
958 pub(crate) fn fstat(fd: BorrowedFd<'_>) -> io::Result<Stat> { in fstat()
990 fn fstat_old(fd: BorrowedFd<'_>) -> io::Result<Stat> { in fstat_old()
1333 fn statx_to_stat(x: crate::fs::Statx) -> io::Result<Stat> { in statx_to_stat()
1373 fn statx_to_stat(x: crate::fs::Statx) -> io::Result<Stat> { in statx_to_stat()
1413 fn stat64_to_stat(s64: c::stat64) -> io::Result<Stat> { in stat64_to_stat()
1451 fn stat64_to_stat(s64: c::stat64) -> io::Result<Stat> { in stat64_to_stat()
Ddir.rs136 pub fn stat(&self) -> io::Result<Stat> { in stat()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DStatistic.cpp155 for (auto *Stat : Stats) { in reset() local
209 for (const TrackingStatistic *Stat : Stats.Stats) { in PrintStatisticsJSON() local
258 for (const auto &Stat : StatInfo->statistics()) in GetStatistics() local
DFileCollector.cpp108 const sys::fs::file_status &Stat) { in copyAccessAndModificationTime()
136 sys::fs::file_status Stat; in copyFiles() local
DFileOutputBuffer.cpp175 fs::file_status Stat; in create() local
DVirtualFileSystem.cpp548 Status Stat; member in llvm::vfs::detail::InMemoryFile
552 InMemoryFile(Status Stat, std::unique_ptr<llvm::MemoryBuffer> Buffer) in InMemoryFile()
623 Status Stat; member in llvm::vfs::detail::InMemoryDirectory
627 InMemoryDirectory(Status Stat) in InMemoryDirectory()
735 Status Stat(P.str(), getNextVirtualUniqueID(), in addFile() local
751 Status Stat( in addFile() local
/third_party/flutter/skia/src/utils/win/
DSkIStream.cpp83 SK_STDMETHODIMP SkBaseIStream::Stat(STATSTG* pStatstg, DWORD grfStatFlag) in Stat() function in SkBaseIStream
181 SK_STDMETHODIMP SkIStream::Stat(STATSTG* pStatstg, DWORD grfStatFlag) { in Stat() function in SkIStream
234 SK_STDMETHODIMP SkWIStream::Stat(STATSTG* pStatstg, DWORD grfStatFlag) { in Stat() function in SkWIStream
/third_party/skia/src/utils/win/
DSkIStream.cpp83 SK_STDMETHODIMP SkBaseIStream::Stat(STATSTG* pStatstg, DWORD grfStatFlag) in Stat() function in SkBaseIStream
174 SK_STDMETHODIMP SkIStream::Stat(STATSTG* pStatstg, DWORD grfStatFlag) { in Stat() function in SkIStream
225 SK_STDMETHODIMP SkWIStream::Stat(STATSTG* pStatstg, DWORD grfStatFlag) { in Stat() function in SkWIStream
/third_party/rust/crates/rustix/tests/fs/
Drenameat.rs5 fn same(a: &Stat, b: &Stat) -> bool { in same()
/third_party/rust/crates/rustix/src/fs/
Dfd.rs158 pub fn fstat<Fd: AsFd>(fd: Fd) -> io::Result<Stat> { in fstat()
Dat.rs261 pub fn statat<P: path::Arg, Fd: AsFd>(dirfd: Fd, path: P, flags: AtFlags) -> io::Result<Stat> { in statat()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCodeMoverUtils.cpp50 llvm::Statistic &Stat) { in reportInvalidCandidate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
DPDBSymbol.cpp133 for (auto &Stat : Stats) { in dumpChildStats() local
/third_party/ninja/src/
Dtest.cc152 TimeStamp VirtualFileSystem::Stat(const string& path, string* err) const { in Stat() function in VirtualFileSystem
Ddisk_interface.cc160 TimeStamp RealDiskInterface::Stat(const string& path, string* err) const { in Stat() function in RealDiskInterface
Ddisk_interface_test.cc258 TimeStamp StatTest::Stat(const string& path, string* err) const { in Stat() function in __anona24f81e50111::StatTest
Dbuild_log_test.cc223 virtual TimeStamp Stat(const string& path, string* err) const { in Stat() function
/third_party/benchmark/src/
Dbenchmark.cc296 for (const auto& Stat : benchmark.statistics()) in RunBenchmarks() local
/third_party/skia/third_party/externals/harfbuzz/test/shape/
Dhb_test_tools.py160 class Stat: class
/third_party/harfbuzz/test/shaping/
Dhb_test_tools.py160 class Stat: class

12