Home
last modified time | relevance | path

Searched refs:BeginReceive (Results 51 – 75 of 138) sorted by relevance

123456

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DTransactionChannelListener.cs288 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.TransactionReceiveChannelGeneric
290 return this.BeginReceive(this.DefaultReceiveTimeout, callback, state); in BeginReceive()
293 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.TransactionReceiveChannelGeneric
H A DSecurityChannelFactory.cs739 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.SecurityChannelFactory.SecurityDuplexChannel
741 return this.BeginReceive(this.DefaultReceiveTimeout, callback, state); in BeginReceive()
744 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.SecurityChannelFactory.SecurityDuplexChannel
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Net/Sockets/Performance/
H A DSocketTestClientAPM.cs53 _s.BeginReceive( in Receive()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/ReferenceSources/
H A DSocket.cs58 return BeginReceive (buffer, offset, size, socketFlags, callback, state); in UnsafeBeginReceive()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/tests/FunctionalTests/
H A DArgumentValidationTests.cs1212 …Assert.Throws<ArgumentNullException>(() => GetSocket().BeginReceive(null, 0, 0, SocketFlags.None, … in BeginReceive_Buffer_NullBuffer_Throws_ArgumentNull()
1219 …Assert.Throws<ArgumentOutOfRangeException>(() => GetSocket().BeginReceive(s_buffer, -1, 0, SocketF… in BeginReceive_Buffer_InvalidOffset_Throws_ArgumentOutOfRange()
1220 …Assert.Throws<ArgumentOutOfRangeException>(() => GetSocket().BeginReceive(s_buffer, s_buffer.Lengt… in BeginReceive_Buffer_InvalidOffset_Throws_ArgumentOutOfRange()
1229 …Assert.Throws<ArgumentOutOfRangeException>(() => GetSocket().BeginReceive(s_buffer, 0, -1, SocketF… in BeginReceive_Buffer_InvalidCount_Throws_ArgumentOutOfRange()
1230 …Assert.Throws<ArgumentOutOfRangeException>(() => GetSocket().BeginReceive(s_buffer, 0, s_buffer.Le… in BeginReceive_Buffer_InvalidCount_Throws_ArgumentOutOfRange()
1231 …Assert.Throws<ArgumentOutOfRangeException>(() => GetSocket().BeginReceive(s_buffer, s_buffer.Lengt… in BeginReceive_Buffer_InvalidCount_Throws_ArgumentOutOfRange()
1241 …Assert.Throws<ArgumentNullException>(() => GetSocket().BeginReceive(null, SocketFlags.None, TheAsy… in BeginReceive_Buffers_NullBuffers_Throws_ArgumentNull()
1248 …AssertExtensions.Throws<ArgumentException>("buffers", () => GetSocket().BeginReceive(new List<Arra… in BeginReceive_Buffers_EmptyBuffers_Throws_Argument()
H A DUdpClientTest.cs173 Assert.Throws<ObjectDisposedException>(() => udpClient.BeginReceive(null, null)); in DisposeClose_OperationsThrow()
574 byte[] data = receiver.EndReceive(receiver.BeginReceive(null, null), ref remoteEP); in BeginEndSend_BeginEndReceive_Success()
593 byte[] data = receiver.EndReceive(receiver.BeginReceive(null, null), ref remoteEP); in BeginEndSend_BeginEndReceive_Connected_Success()
H A DSocketTestHelper.cs92 … s.BeginReceive(buffer.Array, buffer.Offset, buffer.Count, SocketFlags.None, callback, state), in ReceiveAsync()
95 … Task.Factory.FromAsync(s.BeginReceive, s.EndReceive, bufferList, SocketFlags.None, null); in ReceiveAsync()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/src/ipc/
H A Dbuffered_frame_deserializer.cc48 BufferedFrameDeserializer::BeginReceive() { in BeginReceive() function in perfetto::ipc::BufferedFrameDeserializer
H A Dclient_impl.cc159 auto buf = frame_deserializer_.BeginReceive(); in OnDataAvailable()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/ref/
H A DSystem.Net.Sockets.cs247 …public IAsyncResult BeginReceive(byte[] buffer, int offset, int size, SocketFlags socketFlags, Asy… in BeginReceive() method in System.Net.Sockets.Socket
248 …public IAsyncResult BeginReceive(byte[] buffer, int offset, int size, SocketFlags socketFlags, out… in BeginReceive() method in System.Net.Sockets.Socket
249 …public IAsyncResult BeginReceive(Collections.Generic.IList<ArraySegment<byte>> buffers, SocketFlag… in BeginReceive() method in System.Net.Sockets.Socket
250 …public IAsyncResult BeginReceive(Collections.Generic.IList<ArraySegment<byte>> buffers, SocketFlag… in BeginReceive() method in System.Net.Sockets.Socket
613 … public IAsyncResult BeginReceive(AsyncCallback requestCallback, object state) { throw null; } in BeginReceive() method in System.Net.Sockets.UdpClient
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net.Sockets/
H A DUdpClient.platformnotsupported.cs158 public IAsyncResult BeginReceive (AsyncCallback requestCallback, object state) in BeginReceive() method in System.Net.Sockets.UdpClient
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/src/ipc/
H A Dbuffered_frame_deserializer.cc48 BufferedFrameDeserializer::BeginReceive() { in BeginReceive() function in perfetto::ipc::BufferedFrameDeserializer
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Dispatcher/
H A DDuplexChannelBinder.cs1208 … result = this.innerChannel.BeginReceive(TimeSpan.MaxValue, receiveAsyncCallback, this); in StartBackgroundReceive()
1380 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Dispatcher.DuplexChannelBinder.AutoCloseDuplexSessionChannel
1382 return BeginReceive(DefaultReceiveTimeout, callback, state); in BeginReceive()
1385 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Dispatcher.DuplexChannelBinder.AutoCloseDuplexSessionChannel
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/kNet/include/kNet/
H A DSocket.h235 OverlappedTransferBuffer *BeginReceive();
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/src/System/Net/Sockets/
H A DSocket.Tasks.cs232BeginReceive(bufferArray.Array, bufferArray.Offset, bufferArray.Count, socketFlags, iar => in ReceiveAsyncApm()
246 BeginReceive(poolArray, 0, buffer.Length, socketFlags, iar => in ReceiveAsyncApm()
292 BeginReceive(buffers, socketFlags, iar => in ReceiveAsyncApm()
H A DUDPClient.cs355 public IAsyncResult BeginReceive(AsyncCallback requestCallback, object state) in BeginReceive() method in System.Net.Sockets.UdpClient
652 (callback, state) => ((UdpClient)state).BeginReceive(callback, state), in ReceiveAsync()
/dports/net/mDNSResponder/mDNSResponder-1310.140.1/Clients/SimpleChat.NET/
H A DSimpleChat.cs288 m_socket.BeginReceive(m_buffer, 0, BUFFER_SIZE, 0, new AsyncCallback(OnReadSocket), this); in OnReadSocket()
471 … m_socket.BeginReceive(m_buffer, 0, BUFFER_SIZE, 0, new AsyncCallback(this.OnReadSocket), this); in Form1_Load()
/dports/net/ntpa/ntpa-0.8.2/Ntp.Analyzer.Monitor.Server/
H A DListener.cs107 serverSocket.BeginReceive( in AcceptCallback()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Ipc.Win32/
H A DNamedPipeSocket.cs193 public IAsyncResult BeginReceive(byte[] buffer, int offset, int count, in BeginReceive() method in System.Runtime.Remoting.Channels.Ipc.Win32.NamedPipeSocket
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Sockets/
H A DUDPClient.cs733 public IAsyncResult BeginReceive(AsyncCallback requestCallback, object state) { in BeginReceive() method in System.Net.Sockets.UdpClient
1028 …return Task<UdpReceiveResult>.Factory.FromAsync((callback, state) => BeginReceive(callback, state)… in ReceiveAsync()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Net.Sockets/
H A DSocketCas.cs166 IAsyncResult r = socket.BeginReceive (new byte[1024], 0, 1024, in AsyncReceive()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/kNet/src/
H A DTCPMessageConnection.cpp94 OverlappedTransferBuffer *buffer = socket->BeginReceive(); in ReadSocket()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7/
H A DSystem.Messaging.cs710 public System.IAsyncResult BeginReceive() { throw null; } in BeginReceive() method in System.Messaging.MessageQueue
711 public System.IAsyncResult BeginReceive(System.TimeSpan timeout) { throw null; } in BeginReceive() method in System.Messaging.MessageQueue
712 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, System.Messaging.Cursor cursor, o… in BeginReceive() method in System.Messaging.MessageQueue
713 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject) { throw null;… in BeginReceive() method in System.Messaging.MessageQueue
714 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject, System.AsyncC… in BeginReceive() method in System.Messaging.MessageQueue
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7.1/
H A DSystem.Messaging.cs713 public System.IAsyncResult BeginReceive() { throw null; } in BeginReceive() method in System.Messaging.MessageQueue
714 public System.IAsyncResult BeginReceive(System.TimeSpan timeout) { throw null; } in BeginReceive() method in System.Messaging.MessageQueue
715 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, System.Messaging.Cursor cursor, o… in BeginReceive() method in System.Messaging.MessageQueue
716 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject) { throw null;… in BeginReceive() method in System.Messaging.MessageQueue
717 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject, System.AsyncC… in BeginReceive() method in System.Messaging.MessageQueue
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.2/
H A DSystem.Messaging.cs765 public System.IAsyncResult BeginReceive() { throw null; } in BeginReceive() method in System.Messaging.MessageQueue
766 public System.IAsyncResult BeginReceive(System.TimeSpan timeout) { throw null; } in BeginReceive() method in System.Messaging.MessageQueue
767 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, System.Messaging.Cursor cursor, o… in BeginReceive() method in System.Messaging.MessageQueue
768 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject) { throw null;… in BeginReceive() method in System.Messaging.MessageQueue
769 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject, System.AsyncC… in BeginReceive() method in System.Messaging.MessageQueue

123456