10 references to Passwd
System.Formats.Tar (10)
_generated\0\LibraryImports.g.cs (6)
104internal static unsafe partial int GetPwUidR(uint uid, out global::Interop.Sys.Passwd pwd, byte* buf, int bufLen) 111fixed (global::Interop.Sys.Passwd* __pwd_native = &pwd) 119static extern unsafe int __PInvoke(uint __uid_native, global::Interop.Sys.Passwd* __pwd_native, byte* __buf_native, int __bufLen_native); 129internal static unsafe partial int GetPwNamR(string name, out global::Interop.Sys.Passwd pwd, byte* buf, int bufLen) 143fixed (global::Interop.Sys.Passwd* __pwd_native = &pwd) 159static extern unsafe int __PInvoke(byte* __name_native, global::Interop.Sys.Passwd* __pwd_native, byte* __buf_native, int __bufLen_native);
src\runtime\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);