8 references to Passwd
System.Diagnostics.Process (8)
src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (4)
36const int BufLen = Interop.Sys.Passwd.InitialBufferSize; 63Interop.Sys.Passwd passwd; 97internal static unsafe partial int GetPwUidR(uint uid, out Passwd pwd, byte* buf, int bufLen); 100internal static unsafe partial int GetPwNamR(string name, out Passwd pwd, byte* buf, int bufLen);
System\Diagnostics\Process.Unix.cs (4)
984Interop.Sys.Passwd? passwd; 988const int BufLen = Interop.Sys.Passwd.InitialBufferSize; 1020private static unsafe bool TryGetPasswd(string name, byte* buf, int bufLen, out Interop.Sys.Passwd? passwd) 1023Interop.Sys.Passwd tempPasswd;