| /llvm-project-15.0.7/lldb/test/API/functionalities/avoids-fd-leak/ |
| H A D | main.c | 15 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 D | fdpexpect.py | 49 os.fstat(fd) 84 os.fstat(self.child_fd)
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/symbolizer/ |
| H A D | sanitizer_wrappers.cpp | 141 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 D | fstat.cpp | 8 if (fstat(0, &st)) in main()
|
| /llvm-project-15.0.7/compiler-rt/test/tsan/Darwin/ |
| H A D | variadic-open.cpp | 15 int result = fstat(fd, &info); in main()
|
| /llvm-project-15.0.7/lldb/test/Shell/Register/ |
| H A D | x86-64-fp-write.test | 11 register write fstat 0x8884 34 # CHECK-DAG: fstat = 0x8884
|
| H A D | x86-fp-write.test | 11 register write fstat 0x8884 33 # CHECK-DAG: fstat = 0x8884
|
| H A D | x86-fp-read.test | 19 # CHECK-DAG: fstat = 0x8084
|
| H A D | x86-64-fp-read.test | 19 # CHECK-DAG: fstat = 0x8084
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_solaris.cpp | 126 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 D | RegisterContextNetBSD_i386.cpp | 37 uint16_t fstat; // FPU Status Word (fsw) member
|
| H A D | RegisterInfos_x86_64.h | 264 …DEFINE_FPR(fstat, fstat, dwarf_fstat_x86_64, dwarf_fstat_x86_64, LLDB_INVALID_REGN… 414 UPDATE_FPR_INFO(fstat, fstat);
|
| H A D | RegisterContextLinux_i386.cpp | 37 uint16_t fstat; // FPU Status Word (fsw) member
|
| H A D | RegisterInfos_i386.h | 231 DEFINE_FPR(fstat, fstat, LLDB_INVALID_REGNUM, dwarf_fstat_i386,
|
| H A D | RegisterContext_x86.h | 268 uint16_t fstat; // FPU Status Word (fsw) member
|
| /llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/NetBSD/ |
| H A D | cdb.cpp | 100 int rv = fstat(fd, &sb); in test_cdbr2()
|
| /llvm-project-15.0.7/llvm/lib/Support/Unix/ |
| H A D | Process.inc | 209 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 D | TestGdbRemotePlatformFile.py | 265 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 D | RTDyldMemoryManager.cpp | 236 if (Name == "fstat") return (uint64_t)&fstat; in getSymbolAddressInProcess()
|
| /llvm-project-15.0.7/lldb/test/Shell/Register/Core/Inputs/ |
| H A D | x86-fp.check | 2 # CHECK-DAG: fstat = 0x8084
|
| /llvm-project-15.0.7/libcxx/src/filesystem/ |
| H A D | posix_compat.h | 225 int fstat(int fd, StatT *buf) { in fstat() function 494 using ::fstat;
|
| /llvm-project-15.0.7/clang/tools/scan-view/share/ |
| H A D | ScanView.py | 740 fs = os.fstat(f.fileno()) 770 fs = os.fstat(f.fileno())
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | std-c-library-functions-POSIX.c | 177 int fstat(int fd, struct stat *statbuf);
|
| /llvm-project-15.0.7/compiler-rt/lib/msan/ |
| H A D | msan_interceptors.cpp | 41 #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 D | file.cpp | 144 if (::fstat(fd_, &buf) == 0) { in Open()
|