Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_file.cc52 CloseFile(fd); in ReopenIfNecessary()
85 CloseFile(fd); in SetReportPath()
124 CloseFile(fd); in ReadFileToBuffer()
133 CloseFile(fd); in ReadFileToBuffer()
159 CloseFile(fd); in ReadFileToVector()
166 CloseFile(fd); in ReadFileToVector()
H A Dsanitizer_file.h61 void CloseFile(fd_t);
72 ~FileCloser() { CloseFile(fd); } in ~FileCloser()
H A Dsanitizer_symbolizer_libcdep.cc447 CloseFile(input_fd_); in Restart()
449 CloseFile(output_fd_); in Restart()
H A Dsanitizer_coverage_libcdep_new.cc54 CloseFile(fd); in WriteModuleCoverage()
H A Dsanitizer_rtems.cc207 void CloseFile(fd_t fd) { in CloseFile() function
H A Dsanitizer_posix.cc175 void CloseFile(fd_t fd) { in CloseFile() function
H A Dsanitizer_win.cc681 void CloseFile(fd_t fd) { in CloseFile() function
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DFileCache.h33 bool CloseFile(lldb::user_id_t fd, Status &error);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp325 bool PlatformPOSIX::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile() function in PlatformPOSIX
327 return FileCache::GetInstance().CloseFile(fd, error); in CloseFile()
329 return m_remote_platform_sp->CloseFile(fd, error); in CloseFile()
331 return Platform::CloseFile(fd, error); in CloseFile()
584 CloseFile(fd_src, error); in GetFile()
587 !FileCache::GetInstance().CloseFile(fd_dst, error)) { in GetFile()
H A DPlatformPOSIX.h51 bool CloseFile(lldb::user_id_t fd, lldb_private::Status &error) override;
/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerIO.h75 int CloseFile(int Fd);
H A DFuzzerIOPosix.cpp90 int CloseFile(int fd) { in CloseFile() function
H A DFuzzerIOWindows.cpp152 int CloseFile(int Fd) { in CloseFile() function
/freebsd-12.1/contrib/compiler-rt/lib/stats/
H A Dstats.cc111 CloseFile(stats_fd); in WriteFullReport()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DFileCache.cpp42 bool FileCache::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile() function in FileCache
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h126 bool CloseFile(lldb::user_id_t fd, Status &error) override;
H A DPlatformRemoteGDBServer.cpp651 bool PlatformRemoteGDBServer::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile() function in PlatformRemoteGDBServer
652 return m_gdb_client.CloseFile(fd, error); in CloseFile()
/freebsd-12.1/contrib/compiler-rt/lib/dfsan/
H A Ddfsan.cc419 CloseFile(fd); in dfsan_fini()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h372 bool CloseFile(lldb::user_id_t fd, Status &error);
H A DGDBRemoteCommunicationClient.cpp2909 bool GDBRemoteCommunicationClient::CloseFile(lldb::user_id_t fd, in CloseFile() function in GDBRemoteCommunicationClient
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPlatform.h565 virtual bool CloseFile(lldb::user_id_t fd, Status &error) { return false; } in CloseFile() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp1319 CloseFile(dest_file, error); in PutFile()
1719 CloseFile(src_fd, close_error); // Ignoring close error. in DownloadModuleSlice()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectPlatform.cpp592 bool success = platform_sp->CloseFile(fd, error); in DoExecute()