| /llvm-project-15.0.7/flang/runtime/ |
| H A D | file.cpp | 158 void OpenFile::Predefine(int fd) { in Predefine() 219 std::size_t OpenFile::Write(FileOffset at, const char *buffer, in Write() 269 int OpenFile::ReadAsynchronously( in ReadAsynchronously() 323 void OpenFile::Wait(int id, IoErrorHandler &handler) { in Wait() 342 void OpenFile::WaitAll(IoErrorHandler &handler) { in WaitAll() 355 Position OpenFile::InquirePosition() const { in InquirePosition() 369 void OpenFile::CheckOpen(const Terminator &terminator) { in CheckOpen() 373 bool OpenFile::Seek(FileOffset at, IoErrorHandler &handler) { in Seek() 385 bool OpenFile::RawSeek(FileOffset at) { in RawSeek() 393 bool OpenFile::RawSeekToEnd() { in RawSeekToEnd() [all …]
|
| H A D | file.h | 26 class OpenFile {
|
| H A D | unit.h | 36 public OpenFile,
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_coverage_libcdep_new.cpp | 32 static fd_t OpenFile(const char* path) { in OpenFile() function 34 fd_t fd = OpenFile(path, WrOnly, &err); in OpenFile() 52 fd_t fd = OpenFile(file_path); in WriteModuleCoverage() 171 fd_t fd = OpenFile(file_path); in DumpCoverage() 181 fd_t fd = OpenFile(file_path); in DumpCoverage()
|
| H A D | sanitizer_file.cpp | 66 fd = OpenFile(full_path, WrOnly, &err); in ReopenIfNecessary() 142 fd_t fd = OpenFile(file_name, RdOnly, errno_p); in ReadFileToBuffer() 178 fd_t fd = OpenFile(file_name, RdOnly, errno_p); in ReadFileToVector()
|
| H A D | sanitizer_file.h | 58 fd_t OpenFile(const char *filename, FileAccessMode mode,
|
| H A D | sanitizer_posix.cpp | 156 fd_t OpenFile(const char *filename, FileAccessMode mode, error_t *errno_p) { in OpenFile() function 196 fd_t fd = OpenFile(file_name, RdOnly); in MapFileToMemory()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | FileManager.h | 205 getFile(StringRef Filename, bool OpenFile = false, bool CacheFailure = true); 222 bool OpenFile = false, 235 bool OpenFile = false, 238 getFileRef(Filename, OpenFile, CacheFailure));
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_libc_test.cpp | 119 fd_t fd = OpenFile(tmpfile, WrOnly); in TEST() 124 fd = OpenFile(tmpfile, WrOnly); in TEST() 138 fd = OpenFile(tmpfile, RdOnly); in TEST() 319 fd_t fd = OpenFile(tmpfile, RdWr); in TEST() 361 fd_t fd = OpenFile(tmpfile, WrOnly); in TEST()
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/ |
| H A D | FileCache.h | 31 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | RNBSocket.h | 49 rnb_err_t OpenFile(const char *path);
|
| H A D | debugserver.cpp | 1502 if (remote->Comm().OpenFile(str)) in main() 1604 if (remote->Comm().OpenFile(str)) in main() 1633 if (remote->Comm().OpenFile(str)) in main() 1671 if (remote->Comm().OpenFile(str)) in main()
|
| H A D | RNBSocket.cpp | 244 rnb_err_t RNBSocket::OpenFile(const char *path) { in OpenFile() function in RNBSocket
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | RemoteAwarePlatform.cpp | 213 lldb::user_id_t RemoteAwarePlatform::OpenFile(const FileSpec &file_spec, in OpenFile() function in RemoteAwarePlatform 217 return m_remote_platform_sp->OpenFile(file_spec, flags, mode, error); in OpenFile() 218 return Platform::OpenFile(file_spec, flags, mode, error); in OpenFile()
|
| H A D | Platform.cpp | 674 user_id_t Platform::OpenFile(const FileSpec &file_spec, in OpenFile() function in Platform 678 return FileCache::GetInstance().OpenFile(file_spec, flags, mode, error); in OpenFile() 1199 lldb::user_id_t dest_file = OpenFile( in PutFile() 1626 auto src_fd = OpenFile(src_file_spec, File::eOpenOptionReadOnly, in DownloadModuleSlice()
|
| /llvm-project-15.0.7/libc/test/src/dirent/ |
| H A D | dirent_test.cpp | 65 TEST(LlvmLibcDirentTest, OpenFile) { in TEST() argument
|
| /llvm-project-15.0.7/compiler-rt/lib/stats/ |
| H A D | stats.cpp | 48 stats_fd = OpenFile(path.data(), WrOnly, &err); in OpenStatsFile()
|
| /llvm-project-15.0.7/lldb/source/Host/common/ |
| H A D | FileCache.cpp | 26 lldb::user_id_t FileCache::OpenFile(const FileSpec &file_spec, in OpenFile() function in FileCache
|
| /llvm-project-15.0.7/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerIO.h | 99 FILE* OpenFile(int Fd, const char *Mode);
|
| H A D | FuzzerIOPosix.cpp | 110 FILE* OpenFile(int Fd, const char* Mode) { in OpenFile() function
|
| H A D | FuzzerIO.cpp | 139 FILE *NewOutputFile = OpenFile(OutputFd, "w"); in DupAndCloseStderr()
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | RemoteAwarePlatform.h | 29 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.h | 110 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
|
| H A D | PlatformRemoteGDBServer.cpp | 583 lldb::user_id_t PlatformRemoteGDBServer::OpenFile(const FileSpec &file_spec, in OpenFile() function in PlatformRemoteGDBServer 588 return m_gdb_client_up->OpenFile(file_spec, flags, mode, error); in OpenFile()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 210 user_id_t fd_src = OpenFile(source, File::eOpenOptionReadOnly, in GetFile() 222 user_id_t fd_dst = FileCache::GetInstance().OpenFile( in GetFile()
|