6 references to GetLastError
System.Diagnostics.Process (6)
src\libraries\Common\src\Interop\Unix\System.Native\Interop.IsMemberOfGroup.cs (1)
38else if (rv == -1 && Interop.Sys.GetLastError() == Interop.Error.EINVAL)
System\Diagnostics\Process.Unix.cs (3)
79Interop.Error error = Interop.Sys.GetLastError(); 115Interop.Error error = Interop.Sys.GetLastError(); 129Interop.Error error = Interop.Sys.GetLastError();
System\Diagnostics\ProcessManager.Unix.cs (1)
32return 0 == output || (-1 == output && Interop.Error.EPERM == Interop.Sys.GetLastError());
System\Diagnostics\ProcessWaitState.Unix.cs (1)
364Interop.Error errno = Interop.Sys.GetLastError();