Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_file.cpp52 CloseFile(fd); in ReopenIfNecessary()
175 CloseFile(fd); in SetReportPath()
221 CloseFile(fd); in ReadFileToBuffer()
230 CloseFile(fd); in ReadFileToBuffer()
256 CloseFile(fd); in ReadFileToVector()
263 CloseFile(fd); in ReadFileToVector()
H A Dsanitizer_file.h61 void CloseFile(fd_t);
72 ~FileCloser() { CloseFile(fd); } in ~FileCloser()
H A Dsanitizer_symbolizer_libcdep.cpp533 CloseFile(input_fd_); in Restart()
535 CloseFile(output_fd_); in Restart()
H A Dsanitizer_coverage_libcdep_new.cpp55 CloseFile(fd); in WriteModuleCoverage()
H A Dsanitizer_posix.cpp180 void CloseFile(fd_t fd) { in CloseFile() function
H A Dsanitizer_win.cpp789 void CloseFile(fd_t fd) { in CloseFile() function
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp109 bool RemoteAwarePlatform::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile() function in RemoteAwarePlatform
111 return m_remote_platform_sp->CloseFile(fd, error); in CloseFile()
112 return Platform::CloseFile(fd, error); in CloseFile()
H A DPlatform.cpp649 bool Platform::CloseFile(user_id_t fd, Status &error) { in CloseFile() function in Platform
651 return FileCache::GetInstance().CloseFile(fd, error); in CloseFile()
1195 CloseFile(dest_file, error); in PutFile()
1774 CloseFile(src_fd, close_error); // Ignoring close error. in DownloadModuleSlice()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileCache.h33 bool CloseFile(lldb::user_id_t fd, Status &error);
/freebsd/contrib/llvm-project/compiler-rt/lib/stats/
H A Dstats.cpp110 CloseFile(stats_fd); in WriteFullReport()
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIO.h102 int CloseFile(int Fd);
H A DFuzzerIOPosix.cpp115 int CloseFile(int fd) { in CloseFile() function
H A DFuzzerIOWindows.cpp221 int CloseFile(int Fd) { in CloseFile() function
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DFileCache.cpp43 bool FileCache::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile() function in FileCache
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h34 bool CloseFile(lldb::user_id_t fd, Status &error) override;
H A DPlatform.h580 virtual bool CloseFile(lldb::user_id_t fd, Status &error);
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DLoadLinkableFile.cpp52 auto CloseFile = make_scope_exit([&]() { sys::fs::closeFile(FD); }); in loadLinkableFile() local
H A DMachO.cpp113 auto CloseFile = make_scope_exit([&]() { sys::fs::closeFile(FD); }); in loadMachORelocatableObject() local
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h114 bool CloseFile(lldb::user_id_t fd, Status &error) override;
H A DPlatformRemoteGDBServer.cpp589 bool PlatformRemoteGDBServer::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile() function in PlatformRemoteGDBServer
591 return m_gdb_client_up->CloseFile(fd, error); in CloseFile()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp260 CloseFile(fd_src, error); in GetFile()
263 !FileCache::GetInstance().CloseFile(fd_dst, error)) { in GetFile()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h362 bool CloseFile(lldb::user_id_t fd, Status &error);
H A DGDBRemoteCommunicationClient.cpp3126 bool GDBRemoteCommunicationClient::CloseFile(lldb::user_id_t fd, in CloseFile() function in GDBRemoteCommunicationClient
3169 CloseFile(fd, error); in Stat()
3439 CloseFile(fd, error); in GetFileExists()
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp807 CloseFile(report_file.fd); in __memprof_profile_reset()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp538 bool success = platform_sp->CloseFile(fd, error); in DoExecute()