43 references to Sys
System.IO.Pipes (43)
Microsoft\Win32\SafeHandles\SafePipeHandle.Unix.cs (1)
64
Interop.
Sys
.Close(handle) == 0 :
src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (3)
123
_error = Interop.
Sys
.ConvertErrorPlatformToPal(errno);
140
get { return _rawErrno == -1 ? (_rawErrno = Interop.
Sys
.ConvertErrorPalToPlatform(_error)) : _rawErrno; }
145
return Interop.
Sys
.StrError(RawErrno);
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\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (3)
36
const int BufLen = Interop.
Sys
.Passwd.InitialBufferSize;
63
Interop.
Sys
.Passwd passwd;
64
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 (10)
109
uint serverEUID = Interop.
Sys
.GetEUid();
112
if (Interop.
Sys
.GetPeerID(serverHandle, out peerID) == -1)
171
if (Interop.
Sys
.GetPeerID(handle, out peerID) == -1)
176
return Interop.
Sys
.GetUserNameFromPasswd(peerID);
209
uint currentEUID = Interop.
Sys
.GetEUid();
213
if (Interop.
Sys
.GetPeerID(handle, out peerID) == -1)
219
if (Interop.
Sys
.SetEUid(peerID) == -1)
231
Interop.
Sys
.SetEUid(currentEUID);
300
Interop.
Sys
.Unlink(PipeName); // ignore any failures
321
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();