Home
last modified time | relevance | path

Searched refs:ReadFile (Results 1 – 25 of 26) sorted by relevance

12

/llvm-project/flang/lib/Parser/
H A Dsource.cpp139 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 DTextStubV5Tests.cpp22 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 DTextStubV4Tests.cpp23 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 DTextStubV2Tests.cpp42 TEST(TBDv2, ReadFile) { in TEST() argument
H A DTextStubV1Tests.cpp43 TEST(TBDv1, ReadFile) { in TEST() argument
H A DTextStubV3Tests.cpp42 TEST(TBDv3, ReadFile) { in TEST() argument
/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp115 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 DPlatform.cpp666 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 DBenchmark.cpp
/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dlldbgdbserverutils.py1034 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 Dbind_io_completion_callback.cpp53 if (!ReadFile(file, buffer, sizeof(buffer), NULL, &ov) && in main()
/llvm-project/lldb/include/lldb/Host/
H A DFileCache.h37 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
/llvm-project/flang/include/flang/Parser/
H A Dsource.h81 void ReadFile();
/llvm-project/lldb/source/Host/common/
H A DFileCache.cpp92 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 DRemoteAwarePlatform.h36 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
H A DPlatform.h586 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 DPlatformRemoteGDBServer.h116 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *data_ptr,
H A DPlatformRemoteGDBServer.cpp613 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 DConnectionGenericFileWindows.cpp181 result = ::ReadFile(m_file, dst, dst_len, NULL, &m_overlapped); in Read()
H A DPipeWindows.cpp280 ::ReadFile(m_read, buf, size, &sys_bytes_read, &m_read_overlapped); in ReadWithTimeout()
/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h370 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp241 const uint64_t n_read = ReadFile(fd_src, offset, buffer_sp->GetBytes(), in GetFile()
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cpp797 // 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 DPath.inc1303 // 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 DCommandObjectPlatform.cpp581 uint64_t retcode = platform_sp->ReadFile( in DoExecute()

12