9 references to SocketEvent
System.Net.Sockets (9)
src\libraries\Common\src\Interop\Unix\System.Native\Interop.SocketEvent.cs (3)
37internal static unsafe partial Error CreateSocketEventBuffer(int count, SocketEvent** buffer); 40internal static unsafe partial Error FreeSocketEventBuffer(SocketEvent* buffer); 49internal static unsafe partial Error WaitForSocketEvents(IntPtr port, SocketEvent* buffer, int* count);
System\Net\Sockets\SocketAsyncEngine.Unix.cs (6)
80/// <para>The index is used as the <see cref="Interop.Sys.SocketEvent.Data"/> to quickly map events to <see cref="SocketAsyncContext"/>s.</para> 87private readonly Interop.Sys.SocketEvent* _buffer; 194fixed (Interop.Sys.SocketEvent** bufferPtr = &_buffer) 355public Interop.Sys.SocketEvent* Buffer { get; } 369foreach (var socketEvent in new ReadOnlySpan<Interop.Sys.SocketEvent>(Buffer, numEvents))