3 instantiations of ErrorInfo
System.IO.Pipes (3)
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);
8 references to ErrorInfo
System.IO.Pipes (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);
System\IO\Pipes\PipeStream.Unix.cs (2)
463Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo(); 522Interop.ErrorInfo error = Interop.Sys.GetLastErrorInfo();