Lines Matching refs:filename

244         internal static int DoProcess(string filename, string arguments)  in DoProcess()  argument
247 Log.WriteLine("ProcessorExecutor.DoProcess : " + filename + " " + arguments); in DoProcess()
252 ProcessStartInfo si = new ProcessStartInfo(filename); in DoProcess()
273 Console.WriteLine(filename + " " + arguments); in DoProcess()
286 internal static int DoProcess_DontWait(string filename, string arguments) in DoProcess_DontWait() argument
289 … Log.WriteLine("ProcessorExecutor.DoProcess_DontWait : " + filename + " " + arguments); in DoProcess_DontWait()
295 ProcessStartInfo si = new ProcessStartInfo(filename); in DoProcess_DontWait()
313 Console.WriteLine(filename + " " + arguments); in DoProcess_DontWait()
327 … internal static int DoProcess_GetOutput(string filename, string arguments, out string output) in DoProcess_GetOutput() argument
330 … Log.WriteLine("ProcessorExecutor.DoProcess_GetOutput : " + filename + " " + arguments); in DoProcess_GetOutput()
333 return DoProcess_GetOutput(filename, arguments, false, -1, out output); in DoProcess_GetOutput()
345 …internal static int DoProcess_GetOutput(string filename, string arguments, bool waitDataReceived, … in DoProcess_GetOutput() argument
348 … Log.WriteLine("ProcessorExecutor.DoProcess_GetOutput : " + filename + " " + arguments); in DoProcess_GetOutput()
358 ProcessStartInfo si = new ProcessStartInfo(filename); in DoProcess_GetOutput()
391 …Console.WriteLine("ERROR: Process started for '" + filename + " " + arguments + "' did not finish … in DoProcess_GetOutput()
434 Console.WriteLine(filename + " " + arguments); in DoProcess_GetOutput()
448 …internal static int StartProcess_RedirectOutput(string filename, string arguments, DataReceivedEve… in StartProcess_RedirectOutput() argument
451 … Log.WriteLine("ProcessorExecutor.StartProcess_RedirectOutput : " + filename + " " + arguments); in StartProcess_RedirectOutput()
457 ProcessStartInfo si = new ProcessStartInfo(filename); in StartProcess_RedirectOutput()
498 Console.WriteLine(filename + " " + arguments); in StartProcess_RedirectOutput()
504 internal static int StartProcess_RedirectOutput(string filename, string arguments) in StartProcess_RedirectOutput() argument
507 … Log.WriteLine("ProcessorExecutor.StartProcess_RedirectOutput : " + filename + " " + arguments); in StartProcess_RedirectOutput()
513 ProcessStartInfo si = new ProcessStartInfo(filename); in StartProcess_RedirectOutput()
531 Console.WriteLine(filename + " " + arguments); in StartProcess_RedirectOutput()
963 internal static bool IsFileLocked(string filename) in IsFileLocked() argument
970 FileInfo file = new FileInfo(filename); in IsFileLocked()
986 handleTool.StartInfo.Arguments = filename + " /accepteula"; in IsFileLocked()
993 Log.WriteLine("Filename = " + filename); in IsFileLocked()
1002 Log.WriteLine("Unable to get handle information on file " + filename); in IsFileLocked()
1030 internal static string ExpandExecutable(byte[] payload, string filename) in ExpandExecutable() argument
1051 full_tmp_path = PathConverter.Windowsify(full_tmp_path) + "\\" + filename; in ExpandExecutable()
1116 internal static bool IsValidFile(string filename, bool checkExistence) in IsValidFile() argument
1119 …Log.WriteLine("IsValidFile called. filename=" + filename + ", checkExistence=" + checkExistence.To… in IsValidFile()
1121 if (string.IsNullOrEmpty(filename)) in IsValidFile()
1127 filename = PathConverter.Windowsify(filename); in IsValidFile()
1131 FileInfo file = new FileInfo(filename); in IsValidFile()