12 references to Passwd
System.Private.CoreLib (12)
LibraryImports.g.cs (6)
8671
internal static unsafe partial int GetPwUidR(uint uid, out global::Interop.Sys.
Passwd
pwd, byte* buf, int bufLen)
8676
fixed (global::Interop.Sys.
Passwd
* __pwd_native = &pwd)
8684
static extern unsafe int __PInvoke(uint __uid_native, global::Interop.Sys.
Passwd
* __pwd_native, byte* __buf_native, int __bufLen_native);
8693
internal static unsafe partial int GetPwNamR(string name, out global::Interop.Sys.
Passwd
pwd, byte* buf, int bufLen)
8705
fixed (global::Interop.Sys.
Passwd
* __pwd_native = &pwd)
8721
static extern unsafe int __PInvoke(byte* __name_native, global::Interop.Sys.
Passwd
* __pwd_native, byte* __buf_native, int __bufLen_native);
src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (4)
37
const int BufLen = Interop.Sys.
Passwd
.InitialBufferSize;
64
Interop.Sys.
Passwd
passwd;
98
internal static unsafe partial int GetPwUidR(uint uid, out
Passwd
pwd, byte* buf, int bufLen);
101
internal static unsafe partial int GetPwNamR(string name, out
Passwd
pwd, byte* buf, int bufLen);
src\libraries\System.Private.CoreLib\src\System\IO\PersistedFiles.Unix.cs (2)
72
const int BufLen = Interop.Sys.
Passwd
.InitialBufferSize;
101
Interop.Sys.
Passwd
passwd;