8 references to Passwd
System.Diagnostics.Process (8)
src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (4)
37const int BufLen = Interop.Sys.Passwd.InitialBufferSize; 64Interop.Sys.Passwd passwd; 98internal static unsafe partial int GetPwUidR(uint uid, out Passwd pwd, byte* buf, int bufLen); 101internal static unsafe partial int GetPwNamR(string name, out Passwd pwd, byte* buf, int bufLen);
System\Diagnostics\Process.Unix.cs (4)
904Interop.Sys.Passwd? passwd; 908const int BufLen = Interop.Sys.Passwd.InitialBufferSize; 940private static unsafe bool TryGetPasswd(string name, byte* buf, int bufLen, out Interop.Sys.Passwd? passwd) 943Interop.Sys.Passwd tempPasswd;