4 instantiations of ErrorInfo
System.Console (4)
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);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\PersistedFiles.Unix.cs (1)
121var errorInfo = new Interop.ErrorInfo(error);
8 references to ErrorInfo
System.Console (8)
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\Interop.IOErrors.cs (3)
11private static void ThrowExceptionForIoErrno(ErrorInfo errorInfo, string? path, bool isDirError) 114internal static Exception GetExceptionForIoErrno(ErrorInfo errorInfo, string? path = null, bool isDirError = false) 183internal static Exception GetIOException(Interop.ErrorInfo errorInfo, string? path = null)
src\runtime\src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (1)
83var errorInfo = new Interop.ErrorInfo(error);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\PersistedFiles.Unix.cs (1)
121var errorInfo = new Interop.ErrorInfo(error);
System\ConsolePal.Unix.cs (1)
994Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo();