Home
last modified time | relevance | path

Searched refs:CloseFile (Results 1 – 23 of 23) sorted by relevance

/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_file.cpp52 CloseFile(fd); in ReopenIfNecessary()
109 CloseFile(fd); in SetReportPath()
155 CloseFile(fd); in ReadFileToBuffer()
164 CloseFile(fd); in ReadFileToBuffer()
190 CloseFile(fd); in ReadFileToVector()
197 CloseFile(fd); in ReadFileToVector()
H A Dsanitizer_file.h60 void CloseFile(fd_t);
71 ~FileCloser() { CloseFile(fd); } in ~FileCloser()
H A Dsanitizer_symbolizer_libcdep.cpp519 CloseFile(input_fd_); in Restart()
521 CloseFile(output_fd_); in Restart()
H A Dsanitizer_coverage_libcdep_new.cpp55 CloseFile(fd); in WriteModuleCoverage()
H A Dsanitizer_posix.cpp178 void CloseFile(fd_t fd) { in CloseFile() function
H A Dsanitizer_win.cpp760 void CloseFile(fd_t fd) { in CloseFile() function
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_libc_test.cpp122 CloseFile(fd); in TEST()
134 CloseFile(fd); in TEST()
172 CloseFile(fd); in TEST()
338 CloseFile(fd); in TEST()
364 CloseFile(fd); in TEST()
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DFileCache.h33 bool CloseFile(lldb::user_id_t fd, Status &error);
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DRemoteAwarePlatform.cpp222 bool RemoteAwarePlatform::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile() function in RemoteAwarePlatform
224 return m_remote_platform_sp->CloseFile(fd, error); in CloseFile()
225 return Platform::CloseFile(fd, error); in CloseFile()
H A DPlatform.cpp684 bool Platform::CloseFile(user_id_t fd, Status &error) { in CloseFile() function in Platform
686 return FileCache::GetInstance().CloseFile(fd, error); in CloseFile()
1230 CloseFile(dest_file, error); in PutFile()
1656 CloseFile(src_fd, close_error); // Ignoring close error. in DownloadModuleSlice()
/openbsd-src/gnu/llvm/compiler-rt/lib/stats/
H A Dstats.cpp110 CloseFile(stats_fd); in WriteFullReport()
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DFileCache.cpp43 bool FileCache::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile() function in FileCache
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerIO.h101 int CloseFile(int Fd);
H A DFuzzerIOPosix.cpp114 int CloseFile(int fd) { in CloseFile() function
H A DFuzzerIOWindows.cpp221 int CloseFile(int Fd) { in CloseFile() function
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h33 bool CloseFile(lldb::user_id_t fd, Status &error) override;
H A DPlatform.h496 virtual bool CloseFile(lldb::user_id_t fd, Status &error);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h114 bool CloseFile(lldb::user_id_t fd, Status &error) override;
H A DPlatformRemoteGDBServer.cpp587 bool PlatformRemoteGDBServer::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile() function in PlatformRemoteGDBServer
589 return m_gdb_client_up->CloseFile(fd, error); in CloseFile()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp256 CloseFile(fd_src, error); in GetFile()
259 !FileCache::GetInstance().CloseFile(fd_dst, error)) { in GetFile()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h352 bool CloseFile(lldb::user_id_t fd, Status &error);
H A DGDBRemoteCommunicationClient.cpp3077 bool GDBRemoteCommunicationClient::CloseFile(lldb::user_id_t fd, in CloseFile() function in GDBRemoteCommunicationClient
3120 CloseFile(fd, error); in Stat()
3390 CloseFile(fd, error); in GetFileExists()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectPlatform.cpp557 bool success = platform_sp->CloseFile(fd, error); in DoExecute()