Home
last modified time | relevance | path

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

/openbsd-src/regress/lib/libcrypto/certs/
H A Dverify_test.go58 rootsPEM, err := ioutil.ReadFile(filepath.Join(test.id, "roots.pem"))
62 bundlePEM, err := ioutil.ReadFile(filepath.Join(test.id, "bundle.pem"))
/openbsd-src/gnu/usr.bin/perl/cpan/Win32API-File/t/
H A Dfile.t104 $ok= ReadFile( $h2, $text, 80, $len, [] )
121 $ok= ! ReadFile( $h2, $text, 80, $len, [] )
156 $ok= ReadFile( $h1, $text, 0, [], [] );
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DFileCache.h37 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DRemoteAwarePlatform.cpp228 uint64_t RemoteAwarePlatform::ReadFile(lldb::user_id_t fd, uint64_t offset, in ReadFile() function in RemoteAwarePlatform
232 return m_remote_platform_sp->ReadFile(fd, offset, dst, dst_len, error); in ReadFile()
233 return Platform::ReadFile(fd, offset, dst, dst_len, error); in ReadFile()
H A DPlatform.cpp700 uint64_t Platform::ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, in ReadFile() function in Platform
703 return FileCache::GetInstance().ReadFile(fd, offset, dst, dst_len, error); in ReadFile()
1643 ReadFile(src_fd, offset, &buffer[0], to_read, error); in DownloadModuleSlice()
/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h35 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
H A DPlatform.h503 virtual uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
/openbsd-src/regress/lib/libcrypto/c2sp/
H A Dcctv.go188 b, err := ioutil.ReadFile(filepath.Join(testVectorPath, ed25519Json))
/openbsd-src/gnu/llvm/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.cpp607 uint64_t PlatformRemoteGDBServer::ReadFile(lldb::user_id_t fd, uint64_t offset, in ReadFile() function in PlatformRemoteGDBServer
611 return m_gdb_client_up->ReadFile(fd, offset, dst, dst_len, error); in ReadFile()
/openbsd-src/gnu/usr.bin/perl/cpan/Win32API-File/
H A DFile.xs544 ReadFile( hFile, opBuffer, lBytes, olBytesRead, pOverlapped )
557 RETVAL= ReadFile( hFile, opBuffer, lBytes, &olBytesRead,
H A DFile.pm705 ReadFile (
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h371 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
H A DGDBRemoteCommunicationClient.cpp3225 uint64_t GDBRemoteCommunicationClient::ReadFile(lldb::user_id_t fd, in ReadFile() function in GDBRemoteCommunicationClient
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp238 const uint64_t n_read = ReadFile(fd_src, offset, buffer_sp->GetBytes(), in GetFile()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cpp772 bool success = ::ReadFile(fd, buff, buff_size, &num_read_long, nullptr); in ReadFromFile()
/openbsd-src/gnu/llvm/llvm/lib/Support/Windows/
H A DPath.inc1255 // ReadFile can only read 2GB at a time. The caller should check the number of
1260 if (::ReadFile(FileHandle, Buf.data(), BytesToRead, &BytesRead, Overlap))
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectPlatform.cpp602 uint64_t retcode = platform_sp->ReadFile( in DoExecute()
/openbsd-src/regress/lib/libcrypto/wycheproof/
H A Dwycheproof.go2648 b, err := ioutil.ReadFile(path)