Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/tools/lldb-server/commandline/
H A DTestGdbRemoteConnection.py56 ReadFile = kernel32.ReadFile variable
57 ReadFile.restype = BOOL
58 ReadFile.argtypes = (HANDLE, LPVOID, DWORD, LPDWORD, LPOVERLAPPED)
92 if not ReadFile(self._handle, ctypes.byref(buf), size, None,
/llvm-project-15.0.7/flang/lib/Parser/
H A Dsource.cpp119 ReadFile(); in Open()
136 ReadFile(); in ReadStandardInput()
140 void SourceFile::ReadFile() { in ReadFile() function in Fortran::parser::SourceFile
/llvm-project-15.0.7/clang-tools-extra/pseudo/benchmarks/
H A DBenchmark.cpp54 auto ReadFile = [](llvm::StringRef FilePath) -> std::string { in setup() local
64 SourceText = new std::string(ReadFile(Source)); in setup()
/llvm-project-15.0.7/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-15.0.7/lldb/include/lldb/Host/
H A DFileCache.h37 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
/llvm-project-15.0.7/lldb/source/Target/
H A DRemoteAwarePlatform.cpp227 uint64_t RemoteAwarePlatform::ReadFile(lldb::user_id_t fd, uint64_t offset, in ReadFile() function in RemoteAwarePlatform
231 return m_remote_platform_sp->ReadFile(fd, offset, dst, dst_len, error); in ReadFile()
232 return Platform::ReadFile(fd, offset, dst, dst_len, error); in ReadFile()
H A DPlatform.cpp698 uint64_t Platform::ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, in ReadFile() function in Platform
701 return FileCache::GetInstance().ReadFile(fd, offset, dst, dst_len, error); in ReadFile()
1642 ReadFile(src_fd, offset, &buffer[0], to_read, error); in DownloadModuleSlice()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dsource.h64 void ReadFile();
/llvm-project-15.0.7/lldb/source/Host/common/
H A DFileCache.cpp90 uint64_t FileCache::ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, in ReadFile() function in FileCache
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h34 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
H A DPlatform.h502 virtual uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
/llvm-project-15.0.7/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h115 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *data_ptr,
H A DPlatformRemoteGDBServer.cpp612 uint64_t PlatformRemoteGDBServer::ReadFile(lldb::user_id_t fd, uint64_t offset, in ReadFile() function in PlatformRemoteGDBServer
616 return m_gdb_client_up->ReadFile(fd, offset, dst, dst_len, error); in ReadFile()
/llvm-project-15.0.7/lldb/source/Host/windows/
H A DConnectionGenericFileWindows.cpp181 result = ::ReadFile(m_file, dst, dst_len, NULL, &m_overlapped); in Read()
H A DPipeWindows.cpp284 BOOL result = ::ReadFile(m_read, buf, sys_bytes_read, &sys_bytes_read, in ReadWithTimeout()
/llvm-project-15.0.7/llvm/unittests/TextAPI/
H A DTextStubV1Tests.cpp43 TEST(TBDv1, ReadFile) { in TEST() argument
H A DTextStubV2Tests.cpp42 TEST(TBDv2, ReadFile) { in TEST() argument
H A DTextStubV3Tests.cpp42 TEST(TBDv3, ReadFile) { in TEST() argument
H A DTextStubV4Tests.cpp23 TEST(TBDv4, ReadFile) { in TEST() argument
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h376 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
H A DGDBRemoteCommunicationClient.cpp3219 uint64_t GDBRemoteCommunicationClient::ReadFile(lldb::user_id_t fd, in ReadFile() function in GDBRemoteCommunicationClient
/llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp237 const uint64_t n_read = ReadFile(fd_src, offset, buffer_sp->GetBytes(), in GetFile()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cpp772 bool success = ::ReadFile(fd, buff, buff_size, &num_read_long, nullptr); in ReadFromFile()
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DPath.inc1263 // ReadFile can only read 2GB at a time. The caller should check the number of
1268 if (::ReadFile(FileHandle, Buf.data(), BytesToRead, &BytesRead, Overlap))
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectPlatform.cpp601 uint64_t retcode = platform_sp->ReadFile( in DoExecute()