6 instantiations of ErrorInfo
System.Diagnostics.Process (6)
Microsoft\Win32\SafeHandles\SafeProcessHandle.Unix.cs (2)
493new Interop.ErrorInfo(errno).Error == Interop.Error.ENOEXEC) 498throw ProcessUtils.CreateExceptionForErrorStartingProcess(new Interop.ErrorInfo(errno).GetErrorMessage(), errno, resolvedFilename, cwd);
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (2)
164return new ErrorInfo(Marshal.GetLastPInvokeError()); 222return new Interop.ErrorInfo(error);
src\runtime\src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (1)
83var errorInfo = new Interop.ErrorInfo(error);
System\Diagnostics\ProcessUtils.Unix.cs (1)
196var errorInfo = new Interop.ErrorInfo(error);
11 references to ErrorInfo
System.Diagnostics.Process (11)
Microsoft\Win32\SafeHandles\SafeProcessHandle.Unix.cs (3)
83Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo(); 123Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo(); 439Interop.ErrorInfo error = Interop.Error.ENOENT.Info();
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (2)
162internal static ErrorInfo GetLastErrorInfo() 220public static Interop.ErrorInfo Info(this Interop.Error error)
src\runtime\src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (1)
83var errorInfo = new Interop.ErrorInfo(error);
System\Diagnostics\Process.Multiplexing.Unix.cs (1)
336Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo();
System\Diagnostics\Process.Unix.cs (2)
134Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo(); 173Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo();
System\Diagnostics\ProcessUtils.Unix.cs (2)
196var errorInfo = new Interop.ErrorInfo(error); 337Interop.ErrorInfo error = Interop.Error.ENOENT.Info();