70 references to Sys
System.IO.Pipes (70)
_generated\0\LibraryImports.g.cs (26)
368
internal static partial int FLock(global::Microsoft.Win32.SafeHandles.SafeFileHandle fd, global::Interop.
Sys
.LockOperations operation)
397
static extern unsafe int __PInvoke(nint __fd_native, global::Interop.
Sys
.LockOperations __operation_native);
406
internal static partial int FLock(nint fd, global::Interop.
Sys
.LockOperations operation)
420
static extern unsafe int __PInvoke(nint __fd_native, global::Interop.
Sys
.LockOperations __operation_native);
452
internal static partial global::Microsoft.Win32.SafeHandles.SafeFileHandle Open(string filename, global::Interop.
Sys
.OpenFlags flags, int mode)
496
static extern unsafe nint __PInvoke(byte* __filename_native, global::Interop.
Sys
.OpenFlags __flags_native, int __mode_native);
505
internal static unsafe partial int Pipe(int* pipefd, global::Interop.
Sys
.PipeFlags flags)
519
static extern unsafe int __PInvoke(int* __pipefd_native, global::Interop.
Sys
.PipeFlags __flags_native);
528
internal static unsafe partial int GetPwUidR(uint uid, out global::Interop.
Sys
.Passwd pwd, byte* buf, int bufLen)
533
fixed (global::Interop.
Sys
.Passwd* __pwd_native = &pwd)
541
static extern unsafe int __PInvoke(uint __uid_native, global::Interop.
Sys
.Passwd* __pwd_native, byte* __buf_native, int __bufLen_native);
550
internal static unsafe partial int GetPwNamR(string name, out global::Interop.
Sys
.Passwd pwd, byte* buf, int bufLen)
562
fixed (global::Interop.
Sys
.Passwd* __pwd_native = &pwd)
578
static extern unsafe int __PInvoke(byte* __name_native, global::Interop.
Sys
.Passwd* __pwd_native, byte* __buf_native, int __bufLen_native);
701
internal static partial int FStat(global::System.Runtime.InteropServices.SafeHandle fd, out global::Interop.
Sys
.FileStatus output)
714
fixed (global::Interop.
Sys
.FileStatus* __output_native = &output)
733
static extern unsafe int __PInvoke(nint __fd_native, global::Interop.
Sys
.FileStatus* __output_native);
742
internal static partial int Stat(string path, out global::Interop.
Sys
.FileStatus output)
755
fixed (global::Interop.
Sys
.FileStatus* __output_native = &output)
774
static extern unsafe int __PInvoke(byte* __path_native, global::Interop.
Sys
.FileStatus* __output_native);
783
internal static partial int LStat(string path, out global::Interop.
Sys
.FileStatus output)
796
fixed (global::Interop.
Sys
.FileStatus* __output_native = &output)
815
static extern unsafe int __PInvoke(byte* __path_native, global::Interop.
Sys
.FileStatus* __output_native);
824
internal static partial int FStat(global::Microsoft.Win32.SafeHandles.SafePipeHandle fd, out global::Interop.
Sys
.FileStatus output)
837
fixed (global::Interop.
Sys
.FileStatus* __output_native = &output)
856
static extern unsafe int __PInvoke(nint __fd_native, global::Interop.
Sys
.FileStatus* __output_native);
Microsoft\Win32\SafeHandles\SafePipeHandle.Unix.cs (1)
64
Interop.
Sys
.Close(handle) == 0 :
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (3)
124
_error = Interop.
Sys
.ConvertErrorPlatformToPal(errno);
141
get { return _rawErrno == -1 ? (_rawErrno = Interop.
Sys
.ConvertErrorPalToPlatform(_error)) : _rawErrno; }
146
return Interop.
Sys
.StrError(RawErrno);
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (3)
42
ThrowExceptionForIoErrno(
Sys
.GetLastErrorInfo(), path, isDirError);
53
ThrowExceptionForIoErrno(
Sys
.GetLastErrorInfo(), path: null, isDirError: false);
99
Exception e = Interop.GetExceptionForIoErrno(
Sys
.GetLastErrorInfo(), path, isDirError);
src\runtime\src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (3)
37
const int BufLen = Interop.
Sys
.Passwd.InitialBufferSize;
64
Interop.
Sys
.Passwd passwd;
65
int error = Interop.
Sys
.GetPwUidR(uid, out passwd, buf, bufLen);
System\IO\Pipes\AnonymousPipeServerStream.Unix.cs (4)
47
Interop.
Sys
.Fcntl.SetFD(clientHandle, 0) == -1)
51
throw Interop.GetExceptionForIoErrno(Interop.
Sys
.GetLastErrorInfo());
57
if (bufferSize > 0 && Interop.
Sys
.Fcntl.CanGetSetPipeSz)
59
Interop.
Sys
.Fcntl.SetPipeSz(serverHandle, bufferSize); // advisory, ignore errors
System\IO\Pipes\NamedPipeClientStream.Unix.cs (2)
116
uint userId = Interop.
Sys
.GetEUid();
117
if (Interop.
Sys
.GetPeerID(handle, out uint serverOwner) == -1)
System\IO\Pipes\NamedPipeServerStream.Unix.cs (11)
109
uint serverEUID = Interop.
Sys
.GetEUid();
112
if (Interop.
Sys
.GetPeerID(serverHandle, out peerID) == -1)
168
if (Interop.
Sys
.GetPeerID(handle, out peerID) == -1)
173
return Interop.
Sys
.GetUserNameFromPasswd(peerID);
206
uint currentEUID = Interop.
Sys
.GetEUid();
210
if (Interop.
Sys
.GetPeerID(handle, out peerID) == -1)
216
if (Interop.
Sys
.SetEUid(peerID) == -1)
228
Interop.
Sys
.SetEUid(currentEUID);
309
Interop.
Sys
.Unlink(PipeName); // ignore any failures
330
Interop.
Sys
.Unlink(path); // ignore any failures
358
Interop.
Sys
.Unlink(path); // ignore any failures
System\IO\Pipes\PipeStream.Unix.cs (17)
187
if (serverName != "." && serverName != Interop.
Sys
.GetHostName())
234
Interop.
Sys
.FileStatus status;
235
int result = CheckPipeCall(Interop.
Sys
.FStat(safePipeHandle, out status));
238
if ((status.Mode & Interop.
Sys
.FileTypes.S_IFMT) != Interop.
Sys
.FileTypes.S_IFIFO &&
239
(status.Mode & Interop.
Sys
.FileTypes.S_IFMT) != Interop.
Sys
.FileTypes.S_IFSOCK)
452
Interop.CheckIo(Interop.
Sys
.Pipe(fds, Interop.
Sys
.PipeFlags.O_CLOEXEC));
455
reader.SetHandle(new IntPtr(fds[Interop.
Sys
.ReadEndOfPipe]));
456
writer.SetHandle(new IntPtr(fds[Interop.
Sys
.WriteEndOfPipe]));
463
Interop.ErrorInfo errorInfo = Interop.
Sys
.GetLastErrorInfo();
476
if (!Interop.
Sys
.Fcntl.CanGetSetPipeSz)
484
CheckPipeCall(Interop.
Sys
.Fcntl.GetPipeSz(_handle)) :
504
Interop.
Sys
.Fcntl.SetFD(s.SafeHandle, 0) == -1)
506
throw Interop.GetExceptionForIoErrno(Interop.
Sys
.GetLastErrorInfo());
522
Interop.ErrorInfo error = Interop.
Sys
.GetLastErrorInfo();