Home
last modified time | relevance | path

Searched refs:fstat (Results 1 – 25 of 49) sorted by relevance

12

/llvm-project-15.0.7/lldb/test/API/functionalities/avoids-fd-leak/
H A Dmain.c15 if (fstat(i, &buf) != 0) in main()
21 if (fstat(i, &buf) == 0 || errno != EBADF) { in main()
/llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Dfdpexpect.py49 os.fstat(fd)
84 os.fstat(self.child_fd)
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_wrappers.cpp141 int fstat(int fd, struct stat *buf) { STAT(fstat, fd, buf); } in fstat() function
152 int __fxstat(int version, int fd, struct stat *buf) { STAT(fstat, fd, buf); } in __fxstat()
/llvm-project-15.0.7/compiler-rt/test/msan/
H A Dfstat.cpp8 if (fstat(0, &st)) in main()
/llvm-project-15.0.7/compiler-rt/test/tsan/Darwin/
H A Dvariadic-open.cpp15 int result = fstat(fd, &info); in main()
/llvm-project-15.0.7/lldb/test/Shell/Register/
H A Dx86-64-fp-write.test11 register write fstat 0x8884
34 # CHECK-DAG: fstat = 0x8884
H A Dx86-fp-write.test11 register write fstat 0x8884
33 # CHECK-DAG: fstat = 0x8884
H A Dx86-fp-read.test19 # CHECK-DAG: fstat = 0x8084
H A Dx86-64-fp-read.test19 # CHECK-DAG: fstat = 0x8084
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_solaris.cpp126 DECLARE__REAL_AND_INTERNAL64(uptr, fstat, fd_t fd, void *buf) { in DECLARE__REAL_AND_INTERNAL64() argument
127 return _REAL64(fstat)(fd, (struct stat *)buf); in DECLARE__REAL_AND_INTERNAL64()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/
H A DRegisterContextNetBSD_i386.cpp37 uint16_t fstat; // FPU Status Word (fsw) member
H A DRegisterInfos_x86_64.h264 …DEFINE_FPR(fstat, fstat, dwarf_fstat_x86_64, dwarf_fstat_x86_64, LLDB_INVALID_REGN…
414 UPDATE_FPR_INFO(fstat, fstat);
H A DRegisterContextLinux_i386.cpp37 uint16_t fstat; // FPU Status Word (fsw) member
H A DRegisterInfos_i386.h231 DEFINE_FPR(fstat, fstat, LLDB_INVALID_REGNUM, dwarf_fstat_i386,
H A DRegisterContext_x86.h268 uint16_t fstat; // FPU Status Word (fsw) member
/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/NetBSD/
H A Dcdb.cpp100 int rv = fstat(fd, &sb); in test_cdbr2()
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DProcess.inc209 if (RetryAfterSignal(-1, ::fstat, StandardFD, &st) < 0) {
210 assert(errno && "expected errno to be set if fstat failed!");
211 // fstat should return EBADF if the file descriptor is closed.
215 // if fstat succeeds, move on to the next FD.
/llvm-project-15.0.7/lldb/test/API/tools/lldb-server/
H A DTestGdbRemotePlatformFile.py265 sys_stat = os.fstat(temp_file.fileno())
408 self.assertEqual(os.fstat(temp_file.fileno()).st_mode & 0o7777,
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRTDyldMemoryManager.cpp236 if (Name == "fstat") return (uint64_t)&fstat; in getSymbolAddressInProcess()
/llvm-project-15.0.7/lldb/test/Shell/Register/Core/Inputs/
H A Dx86-fp.check2 # CHECK-DAG: fstat = 0x8084
/llvm-project-15.0.7/libcxx/src/filesystem/
H A Dposix_compat.h225 int fstat(int fd, StatT *buf) { in fstat() function
494 using ::fstat;
/llvm-project-15.0.7/clang/tools/scan-view/share/
H A DScanView.py740 fs = os.fstat(f.fileno())
770 fs = os.fstat(f.fileno())
/llvm-project-15.0.7/clang/test/Analysis/
H A Dstd-c-library-functions-POSIX.c177 int fstat(int fd, struct stat *statbuf);
/llvm-project-15.0.7/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp41 #define fstat __fstat50 macro
658 INTERCEPTOR(int, fstat, int fd, void *buf) { in INTERCEPTOR() argument
660 int res = REAL(fstat)(fd, buf); in INTERCEPTOR()
665 # define MSAN_MAYBE_INTERCEPT_FSTAT MSAN_INTERCEPT_FUNC(fstat)
/llvm-project-15.0.7/flang/runtime/
H A Dfile.cpp144 if (::fstat(fd_, &buf) == 0) { in Open()

12