Home
last modified time | relevance | path

Searched refs:BeginReceive (Results 1 – 25 of 138) sorted by relevance

123456

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/src/ipc/
H A Dbuffered_frame_deserializer_unittest.cc146 BufferedFrameDeserializer::ReceiveBuffer rbuf = bfd.BeginReceive(); in TEST()
153 rbuf = bfd.BeginReceive(); in TEST()
159 rbuf = bfd.BeginReceive(); in TEST()
181 BufferedFrameDeserializer::ReceiveBuffer rbuf = bfd.BeginReceive(); in TEST()
185 rbuf = bfd.BeginReceive(); in TEST()
188 rbuf = bfd.BeginReceive(); in TEST()
206 BufferedFrameDeserializer::ReceiveBuffer rbuf = bfd.BeginReceive(); in TEST()
211 rbuf = bfd.BeginReceive(); in TEST()
348 rbuf = bfd.BeginReceive(); in TEST()
352 rbuf = bfd.BeginReceive(); in TEST()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/src/ipc/
H A Dbuffered_frame_deserializer_unittest.cc146 BufferedFrameDeserializer::ReceiveBuffer rbuf = bfd.BeginReceive(); in TEST()
153 rbuf = bfd.BeginReceive(); in TEST()
159 rbuf = bfd.BeginReceive(); in TEST()
181 BufferedFrameDeserializer::ReceiveBuffer rbuf = bfd.BeginReceive(); in TEST()
185 rbuf = bfd.BeginReceive(); in TEST()
188 rbuf = bfd.BeginReceive(); in TEST()
206 BufferedFrameDeserializer::ReceiveBuffer rbuf = bfd.BeginReceive(); in TEST()
211 rbuf = bfd.BeginReceive(); in TEST()
348 rbuf = bfd.BeginReceive(); in TEST()
352 rbuf = bfd.BeginReceive(); in TEST()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Messaging/Test/System.Messaging/
H A DAsyncReceiveTest.cs59 public void BeginReceive() in BeginReceive() method in MonoTests.System.Messaging.AsyncReceiveTest
68 IAsyncResult result = q.BeginReceive (); in BeginReceive()
84 IAsyncResult result = q.BeginReceive (new TimeSpan (0, 0, 2)); in BeginReceiveWithTimeout()
99 IAsyncResult result = q.BeginReceive (new TimeSpan (0, 0, 2), "foo"); in BeginReceiveWithStateAndTimeout()
122 IAsyncResult result = q.BeginReceive (new TimeSpan (0, 0, 2), "foo", ac); in BeginReceiveWithStateAndTimeoutAndCallback()
135 IAsyncResult result = q.BeginReceive (new TimeSpan (0, 0, 2)); in BeginReceiveWithException()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Channels/
H A DInputChannelBase.cs44 public IAsyncResult BeginReceive (AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.InputChannelBase
46 return BeginReceive (DefaultReceiveTimeout, callback, state); in BeginReceive()
49 …public abstract IAsyncResult BeginReceive (TimeSpan timeout, AsyncCallback callback, object state); in BeginReceive() method in System.ServiceModel.Channels.InputChannelBase
68 return EndReceive (BeginReceive (timeout, null, null)); in Receive()
H A DIInputChannel.cs36 IAsyncResult BeginReceive (AsyncCallback callback, object state); in BeginReceive() method
37 IAsyncResult BeginReceive (TimeSpan timeout, AsyncCallback callback, object state); in BeginReceive() method
H A DDuplexChannelBase.cs155 public virtual IAsyncResult BeginReceive (AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.DuplexChannelBase
157 return BeginReceive (this.DefaultReceiveTimeout, callback, state); in BeginReceive()
160 public virtual IAsyncResult BeginReceive (TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.DuplexChannelBase
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKCommunicator/GKNetCore/TCP/
H A DTCPConnection.cs50 BeginReceive(); in TCPConnection()
54 private void BeginReceive() in BeginReceive() method in GKNet.TCP.TCPConnection
56 … fSocket.BeginReceive(fBuffer, 0, fBuffer.Length, SocketFlags.None, OnBytesReceived, this); in BeginReceive()
83 … fSocket.BeginReceive(fBuffer, 0, fBuffer.Length, SocketFlags.None, OnBytesReceived, this); in OnBytesReceived()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DContextInputChannelBase.cs28 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.ContextInputChannelBase
30 return this.InnerChannel.BeginReceive(timeout, callback, state); in BeginReceive()
33 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.ContextInputChannelBase
35 return this.InnerChannel.BeginReceive(callback, state); in BeginReceive()
H A DContextDuplexSessionChannel.cs49 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.ContextDuplexSessionChannel
51 return this.InnerChannel.BeginReceive(timeout, callback, state); in BeginReceive()
54 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.ContextDuplexSessionChannel
56 return this.InnerChannel.BeginReceive(callback, state); in BeginReceive()
H A DIInputChannel.cs16 IAsyncResult BeginReceive(AsyncCallback callback, object state); in BeginReceive() method
17 IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state); in BeginReceive() method
H A DLayeredChannelFactory.cs118 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.LayeredInputChannel
120 return InnerChannel.BeginReceive(callback, state); in BeginReceive()
123 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.LayeredInputChannel
125 return InnerChannel.BeginReceive(timeout, callback, state); in BeginReceive()
H A DDuplexChannel.cs121 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.DuplexChannel
123 return this.BeginReceive(this.DefaultReceiveTimeout, callback, state); in BeginReceive()
126 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.DuplexChannel
H A DInputChannel.cs72 public virtual IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.InputChannel
74 return this.BeginReceive(this.DefaultReceiveTimeout, callback, state); in BeginReceive()
77 … public virtual IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.InputChannel
H A DChannelDemuxer.cs674 result = this.BeginReceive(TimeSpan.MaxValue, onReceiveComplete, this); in StartReceiving()
1113 return this.InnerChannel.BeginReceive(timeout, callback, state); in BeginReceive()
1175 return this.InnerChannel.BeginReceive(timeout, callback, state); in BeginReceive()
2700 return channel.BeginReceive(callback, state); in BeginReceive()
2705 return channel.BeginReceive(timeout, callback, state); in BeginReceive()
2766 return channel.BeginReceive(callback, state); in BeginReceive()
2771 return channel.BeginReceive(timeout, callback, state); in BeginReceive()
3250 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.InputChannelWrapper
3255 return this.InnerChannel.BeginReceive(callback, state); in BeginReceive()
3258 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.InputChannelWrapper
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Discovery/System/ServiceModel/Discovery/
H A DDiscoveryClientDuplexChannel.cs47 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Discovery.DiscoveryClientDuplexChannel
49 return this.InnerChannel.BeginReceive(timeout, callback, state); in BeginReceive()
52 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Discovery.DiscoveryClientDuplexChannel
54 return this.InnerChannel.BeginReceive(callback, state); in BeginReceive()
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKMap/GKMap.Core/ProxySocket/
H A DSocks5Handler.cs252 … Server.BeginReceive(Buffer, 0, Buffer.Length, SocketFlags.None, this.OnAuthReceive, Server); in OnAuthSent()
273 …Server.BeginReceive(Buffer, Received, Buffer.Length - Received, SocketFlags.None, this.OnAuthRecei… in OnAuthReceive()
324 … Server.BeginReceive(Buffer, 0, Buffer.Length, SocketFlags.None, this.OnReceive, Server); in OnSent()
345 …Server.BeginReceive(Buffer, Received, Buffer.Length - Received, SocketFlags.None, this.OnReceive, … in OnReceive()
371 … Server.BeginReceive(Buffer, 0, Buffer.Length, SocketFlags.None, this.OnReadLast, Server); in ProcessReply()
389 …Server.BeginReceive(Buffer, Received, Buffer.Length - Received, SocketFlags.None, this.OnReadLast,… in OnReadLast()
H A DAuthUserPass.cs102 Server.BeginReceive(Buffer, 0, 2, SocketFlags.None, this.OnReceive, Server); in OnSent()
121 …Server.BeginReceive(Buffer, Received, Buffer.Length - Received, SocketFlags.None, this.OnReceive, … in OnReceive()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Messaging/Mono.Messaging/
H A DIMessageQueue.cs178 IAsyncResult BeginReceive (); in BeginReceive() method
180 IAsyncResult BeginReceive (TimeSpan timeout); in BeginReceive() method
182 IAsyncResult BeginReceive (TimeSpan timeout, object stateObject); in BeginReceive() method
184 IAsyncResult BeginReceive (TimeSpan timeout, object stateObject, AsyncCallback callback); in BeginReceive() method
H A DMessageQueueBase.cs78 public IAsyncResult BeginReceive () in BeginReceive() method in Mono.Messaging.MessageQueueBase
84 public IAsyncResult BeginReceive (TimeSpan timeout) in BeginReceive() method in Mono.Messaging.MessageQueueBase
89 public IAsyncResult BeginReceive (TimeSpan timeout, object stateObject) in BeginReceive() method in Mono.Messaging.MessageQueueBase
94 public IAsyncResult BeginReceive (TimeSpan timeout, in BeginReceive() method in Mono.Messaging.MessageQueueBase
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/
H A DMono.Messaging.cs203 System.IAsyncResult BeginReceive(); in BeginReceive() method
204 System.IAsyncResult BeginReceive(System.TimeSpan timeout); in BeginReceive() method
205 System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject); in BeginReceive() method
206 …System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject, System.AsyncCallback… in BeginReceive() method
327 public System.IAsyncResult BeginReceive() { throw null; } in BeginReceive() method in Mono.Messaging.MessageQueueBase
328 public System.IAsyncResult BeginReceive(System.TimeSpan timeout) { throw null; } in BeginReceive() method in Mono.Messaging.MessageQueueBase
329 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject) { throw null;… in BeginReceive() method in Mono.Messaging.MessageQueueBase
330 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject, System.AsyncC… in BeginReceive() method in Mono.Messaging.MessageQueueBase
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/mono/
H A DMono.Messaging.cs204 System.IAsyncResult BeginReceive(); in BeginReceive() method
205 System.IAsyncResult BeginReceive(System.TimeSpan timeout); in BeginReceive() method
206 System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject); in BeginReceive() method
207 …System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject, System.AsyncCallback… in BeginReceive() method
328 public System.IAsyncResult BeginReceive() { throw null; } in BeginReceive() method in Mono.Messaging.MessageQueueBase
329 public System.IAsyncResult BeginReceive(System.TimeSpan timeout) { throw null; } in BeginReceive() method in Mono.Messaging.MessageQueueBase
330 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject) { throw null;… in BeginReceive() method in Mono.Messaging.MessageQueueBase
331 …public System.IAsyncResult BeginReceive(System.TimeSpan timeout, object stateObject, System.AsyncC… in BeginReceive() method in Mono.Messaging.MessageQueueBase
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Discovery/System.ServiceModel.Discovery/
H A DDiscoveryRequestChannel.cs150 public IAsyncResult BeginReceive (AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Discovery.DiscoveryChannel
152 return BeginReceive (DefaultReceiveTimeout, callback, state); in BeginReceive()
155 public IAsyncResult BeginReceive (TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Discovery.DiscoveryChannel
157 return ((IInputChannel) inner).BeginReceive (timeout, callback, state); in BeginReceive()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Channels/System/ServiceModel/Channels/
H A DUdpDuplexChannel.cs110 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.UdpDuplexChannel
112 return this.BeginReceive(this.DefaultReceiveTimeout, callback, state); in BeginReceive()
115 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.UdpDuplexChannel
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Routing/System/ServiceModel/Channels/
H A DSynchronousSendBindingElement.cs159 public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.SynchronousSendBindingElement.SynchronousDuplexChannelBase
161 return this.InnerChannel.BeginReceive(timeout, callback, state); in BeginReceive()
164 public IAsyncResult BeginReceive(AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Channels.SynchronousSendBindingElement.SynchronousDuplexChannelBase
166 return this.InnerChannel.BeginReceive(callback, state); in BeginReceive()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Discovery/System.ServiceModel.Discovery.Udp/
H A DUdpDuplexChannel.cs165 var ar = client.BeginReceive (delegate (IAsyncResult result) { in TryReceive()
280 public IAsyncResult BeginReceive (AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Discovery.Udp.UdpDuplexChannel
282 return BeginReceive (DefaultReceiveTimeout, callback, state); in BeginReceive()
285 public IAsyncResult BeginReceive (TimeSpan timeout, AsyncCallback callback, object state) in BeginReceive() method in System.ServiceModel.Discovery.Udp.UdpDuplexChannel

123456