Lines Matching refs:Filename
19 tool_output_file::CleanupInstaller::CleanupInstaller(StringRef Filename) in CleanupInstaller() argument
20 : Filename(Filename), Keep(false) { in CleanupInstaller()
22 if (Filename != "-") in CleanupInstaller()
23 sys::RemoveFileOnSignal(Filename); in CleanupInstaller()
28 if (!Keep && Filename != "-") in ~CleanupInstaller()
29 sys::fs::remove(Filename); in ~CleanupInstaller()
33 if (Filename != "-") in ~CleanupInstaller()
34 sys::DontRemoveFileOnSignal(Filename); in ~CleanupInstaller()
37 tool_output_file::tool_output_file(StringRef Filename, std::error_code &EC, in tool_output_file() argument
39 : Installer(Filename), OS(Filename, EC, Flags) { in tool_output_file()
45 tool_output_file::tool_output_file(StringRef Filename, int FD) in tool_output_file() argument
46 : Installer(Filename), OS(FD, true) {} in tool_output_file()