| /llvm-project/flang/lib/Parser/ |
| H A D | source.cpp | 139 ReadFile(); in Open() 156 ReadFile(); in ReadStandardInput() 160 void SourceFile::ReadFile() { in ReadFile() function in Fortran::parser::SourceFile
|
| /llvm-project/llvm/unittests/TextAPI/ |
| H A D | TextStubV5Tests.cpp | 22 TEST(TBDv5, ReadFile) { in TEST() argument 1192 TBDFile ReadFile = std::move(Result.get()); in TEST() local 1193 EXPECT_EQ(FileType::TBD_V5, ReadFile->getFileType()); in TEST() 1195 ReadFile->getInstallName()); in TEST() 1196 EXPECT_TRUE(ReadFile->targets().begin() != ReadFile->targets().end()); in TEST() 1197 EXPECT_EQ(*ReadFile->targets().begin(), ExpectedTarget); in TEST() 1198 EXPECT_TRUE(ReadFile->hasSimulatorSupport()); in TEST() 1223 TBDFile ReadFile = std::move(Result.get()); in TEST() local 1224 EXPECT_EQ(FileType::TBD_V5, ReadFile in TEST() [all...] |
| H A D | TextStubV4Tests.cpp | 23 TEST(TBDv4, ReadFile) { in TEST() argument 879 TBDFile ReadFile = std::move(Result.get()); in TEST() local 880 EXPECT_EQ(FileType::TBD_V4, ReadFile->getFileType()); in TEST() 882 ReadFile->getInstallName()); in TEST() 883 EXPECT_TRUE(ReadFile->targets().begin() != ReadFile->targets().end()); in TEST() 884 EXPECT_EQ(*ReadFile->targets().begin(), ExpectedTarget); in TEST() 885 EXPECT_TRUE(ReadFile->isOSLibNotForSharedCache()); in TEST()
|
| H A D | TextStubV2Tests.cpp | 42 TEST(TBDv2, ReadFile) { in TEST() argument
|
| H A D | TextStubV1Tests.cpp | 43 TEST(TBDv1, ReadFile) { in TEST() argument
|
| H A D | TextStubV3Tests.cpp | 42 TEST(TBDv3, ReadFile) { in TEST() argument
|
| /llvm-project/lldb/source/Target/ |
| H A D | RemoteAwarePlatform.cpp | 115 uint64_t RemoteAwarePlatform::ReadFile(lldb::user_id_t fd, uint64_t offset, in ReadFile() 119 return m_remote_platform_sp->ReadFile(fd, offset, dst, dst_len, error); 120 return Platform::ReadFile(fd, offset, dst, dst_len, error); in WriteFile() 112 uint64_t RemoteAwarePlatform::ReadFile(lldb::user_id_t fd, uint64_t offset, ReadFile() function in RemoteAwarePlatform
|
| H A D | Platform.cpp | 666 uint64_t Platform::ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, in ReadFile() 669 return FileCache::GetInstance().ReadFile(fd, offset, dst, dst_len, error); in ReadFile() 671 "Platform::ReadFile() is not supported in the {0} platform", 1762 ReadFile(src_fd, offset, &buffer[0], to_read, error); in DownloadModuleSlice() 662 uint64_t Platform::ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, ReadFile() function in Platform
|
| /llvm-project/clang-tools-extra/pseudo/benchmarks/ |
| H A D | Benchmark.cpp | |
| /llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-server/ |
| H A D | lldbgdbserverutils.py | 1034 ReadFile = kernel32.ReadFile variable 1035 ReadFile.restype = BOOL 1036 ReadFile.argtypes = (HANDLE, LPVOID, DWORD, LPDWORD, LPOVERLAPPED) 1083 if not ReadFile(
|
| /llvm-project/compiler-rt/test/asan/TestCases/Windows/ |
| H A D | bind_io_completion_callback.cpp | 53 if (!ReadFile(file, buffer, sizeof(buffer), NULL, &ov) && in main()
|
| /llvm-project/lldb/include/lldb/Host/ |
| H A D | FileCache.h | 37 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
|
| /llvm-project/flang/include/flang/Parser/ |
| H A D | source.h | 81 void ReadFile();
|
| /llvm-project/lldb/source/Host/common/ |
| H A D | FileCache.cpp | 92 uint64_t FileCache::ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, in ReadFile() 90 uint64_t FileCache::ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, ReadFile() function in FileCache
|
| /llvm-project/lldb/include/lldb/Target/ |
| H A D | RemoteAwarePlatform.h | 36 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
|
| H A D | Platform.h | 586 virtual uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, in SetRSyncPrefix()
|
| /llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.h | 116 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *data_ptr,
|
| H A D | PlatformRemoteGDBServer.cpp | 613 uint64_t PlatformRemoteGDBServer::ReadFile(lldb::user_id_t fd, uint64_t offset, in AutoCompleteDiskFileOrDirectory() 617 return m_gdb_client_up->ReadFile(fd, offset, dst, dst_len, error); in ReadFile() 615 uint64_t PlatformRemoteGDBServer::ReadFile(lldb::user_id_t fd, uint64_t offset, ReadFile() function in PlatformRemoteGDBServer
|
| /llvm-project/lldb/source/Host/windows/ |
| H A D | ConnectionGenericFileWindows.cpp | 181 result = ::ReadFile(m_file, dst, dst_len, NULL, &m_overlapped); in Read()
|
| H A D | PipeWindows.cpp | 280 ::ReadFile(m_read, buf, size, &sys_bytes_read, &m_read_overlapped); in ReadWithTimeout()
|
| /llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationClient.h | 370 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
|
| /llvm-project/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 241 const uint64_t n_read = ReadFile(fd_src, offset, buffer_sp->GetBytes(), in GetFile()
|
| /llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_win.cpp | 797 // bytes_read can't be passed directly to ReadFile: in WriteToFile() 801 bool success = ::ReadFile(fd, buff, buff_size, &num_read_long, nullptr); in WriteToFile()
|
| /llvm-project/llvm/lib/Support/Windows/ |
| H A D | Path.inc | 1303 // ReadFile can only read 2GB at a time. The caller should check the number of 1308 if (::ReadFile(FileHandle, Buf.data(), BytesToRead, &BytesRead, Overlap))
|
| /llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectPlatform.cpp | 581 uint64_t retcode = platform_sp->ReadFile( in DoExecute()
|