14 references to Passwd
System.Diagnostics.Process (14)
_generated\0\LibraryImports.g.cs (6)
528
internal static unsafe partial int GetPwUidR(uint uid, out global::Interop.Sys.
Passwd
pwd, byte* buf, int bufLen)
535
fixed (global::Interop.Sys.
Passwd
* __pwd_native = &pwd)
543
static extern unsafe int __PInvoke(uint __uid_native, global::Interop.Sys.
Passwd
* __pwd_native, byte* __buf_native, int __bufLen_native);
553
internal static unsafe partial int GetPwNamR(string name, out global::Interop.Sys.
Passwd
pwd, byte* buf, int bufLen)
567
fixed (global::Interop.Sys.
Passwd
* __pwd_native = &pwd)
583
static 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)
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);
System\Diagnostics\ProcessUtils.Unix.cs (4)
75
Interop.Sys.
Passwd
? passwd;
79
const int BufLen = Interop.Sys.
Passwd
.InitialBufferSize;
111
private static unsafe bool TryGetPasswd(string name, byte* buf, int bufLen, out Interop.Sys.
Passwd
? passwd)
114
Interop.Sys.
Passwd
tempPasswd;