Home
last modified time | relevance | path

Searched refs:EndInvoke (Results 1 – 25 of 184) sorted by relevance

12345678

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Runtime.Remoting/Test/
H A DAsyncCalls.cs45 return de.EndInvoke (ar); in Simple()
53 return de.EndInvoke (ar); in PrimitiveParams()
69 return de.EndInvoke (ar); in ComplexParams()
85 de.EndInvoke (ar); in ProcessContextData()
96 return de.EndInvoke (ar); in Simple()
104 return de.EndInvoke (ar); in PrimitiveParams()
120 return de.EndInvoke (ar); in ComplexParams()
136 de.EndInvoke (ar); in ProcessContextData()
147 return de.EndInvoke (ar); in Simple()
155 return de.EndInvoke (ar); in PrimitiveParams()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Threading.Tasks/tests/Task/
H A DTaskFromAsyncTest.cs163 … Task.Factory.FromAsync((Func<AsyncCallback, object, IAsyncResult>)null, action.EndInvoke, null); in RunAPMTest()
190 …ReadOnlyCollection<object>>((Func<AsyncCallback, object, IAsyncResult>)null, func.EndInvoke, null); in RunAPMTest()
218 …<object>>.Factory.FromAsync((Func<AsyncCallback, object, IAsyncResult>)null, func.EndInvoke, null); in RunAPMTest()
252 …FromAsync((Func<int, AsyncCallback, object, IAsyncResult>)null, action1.EndInvoke, TestInteger, nu… in RunAPMTest()
279 …on<object>>((Func<int, AsyncCallback, object, IAsyncResult>)null, func1.EndInvoke, TestInteger, nu… in RunAPMTest()
307 …y.FromAsync((Func<int, AsyncCallback, object, IAsyncResult>)null, func1.EndInvoke, TestInteger, nu… in RunAPMTest()
343 …c((Func<int, double, AsyncCallback, object, IAsyncResult>)null, action2.EndInvoke, TestInteger, Te… in RunAPMTest()
435 …c<int, double, bool, AsyncCallback, object, IAsyncResult>)null, action3.EndInvoke, TestInteger, Te… in RunAPMTest()
526 Task.Factory.FromAsync((IAsyncResult)null, action.EndInvoke); in RunAPMTest()
553 … Task.Factory.FromAsync<ReadOnlyCollection<object>>((IAsyncResult)null, func.EndInvoke); in RunAPMTest()
[all …]
H A DTaskFromAsyncWork.cs149 public void EndInvoke(IAsyncResult iar) in EndInvoke() method in System.Threading.Tasks.Tests.AsyncAction
187 public void EndInvoke(IAsyncResult iar) in EndInvoke() method in System.Threading.Tasks.Tests.AsyncAction
224 public void EndInvoke(IAsyncResult iar) in EndInvoke() method in System.Threading.Tasks.Tests.AsyncAction
262 public void EndInvoke(IAsyncResult iar) in EndInvoke() method in System.Threading.Tasks.Tests.AsyncAction
316 public ReadOnlyCollection<object> EndInvoke(IAsyncResult iar) in EndInvoke() method in System.Threading.Tasks.Tests.AsyncFunc
352 public ReadOnlyCollection<object> EndInvoke(IAsyncResult iar) in EndInvoke() method in System.Threading.Tasks.Tests.AsyncFunc
389 public ReadOnlyCollection<object> EndInvoke(IAsyncResult iar) in EndInvoke() method in System.Threading.Tasks.Tests.AsyncFunc
427 public ReadOnlyCollection<object> EndInvoke(IAsyncResult iar) in EndInvoke() method in System.Threading.Tasks.Tests.AsyncFunc
/dports/lang/mono/mono-5.10.1.57/mono/tests/
H A Dbug-80392.2.cs26 d1.EndInvoke (ar2); in Main()
33 d2.EndInvoke (ar1); in Main()
39 if (1 != d1.EndInvoke (ar1)) return 3; in Main()
40 if (2 != d2.EndInvoke (ar2)) return 4; in Main()
H A Dgeneric-delegate2-lib.2.il117 … instance default object EndInvoke (class [mscorlib]System.IAsyncResult result) runtime managed
121 } // end of method ArrDel::EndInvoke
155 … instance default object EndInvoke (class [mscorlib]System.IAsyncResult result) runtime managed
159 } // end of method ObjArrDel::EndInvoke
193 … instance default object EndInvoke (class [mscorlib]System.IAsyncResult result) runtime managed
197 } // end of method StrArrDel::EndInvoke
H A Ddelegate1.cs33 int res = d.EndInvoke (ar1); in Main()
38 d.EndInvoke (ar1); in Main()
H A Ddelegate-with-null-target.il48 … instance default void EndInvoke (class [mscorlib]System.IAsyncResult A_1) runtime managed
52 } // end of method Foo::EndInvoke
87 … instance default void EndInvoke (class [mscorlib]System.IAsyncResult A_1) runtime managed
91 } // end of method Foo::EndInvoke
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Channels/
H A DDuplexChannelBase.cs107 open_handler.EndInvoke (result); in OnEndOpen()
120 close_handler.EndInvoke (result); in OnEndClose()
140 send_handler.EndInvoke (result); in EndSend()
167 return receive_handler.EndInvoke (result); in EndReceive()
196 return try_receive_handler.EndInvoke (out message, result); in EndTryReceive()
213 return wait_handler.EndInvoke (result); in EndWaitForMessage()
H A DReplyChannelBase.cs173 return try_recv_delegate.EndInvoke (out context, result); in EndTryReceiveRequest()
196 return wait_delegate.EndInvoke (result); in EndWaitForRequest()
223 return recv_delegate.EndInvoke (result); in EndReceiveRequest()
240 open_delegate.EndInvoke (result); in OnEndOpen()
255 close_delegate.EndInvoke (result); in OnEndClose()
H A DChannelListenerBase_1.cs119 return accept_channel_delegate.EndInvoke (result); in OnEndAcceptChannel()
134 return wait_delegate.EndInvoke (result); in OnEndWaitForChannel()
149 open_delegate.EndInvoke (result); in OnEndOpen()
164 close_delegate.EndInvoke (result); in OnEndClose()
H A DRequestChannelBase.cs103 return request_delegate.EndInvoke (result); in EndRequest()
118 open_delegate.EndInvoke (result); in OnEndOpen()
132 close_delegate.EndInvoke (result); in OnEndClose()
H A DChannelFactoryBase.cs67 open_delegate.EndInvoke (result); in OnEndOpen()
221 close_delegate.EndInvoke (result); in OnEndClose()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Discovery/System.ServiceModel.Discovery.Udp/
H A DUdpChannelListener.cs81 open_delegate.EndInvoke (result); in OnEndOpen()
93 close_delegate.EndInvoke (result); in OnEndClose()
126 return accept_delegate.EndInvoke (result); in OnEndAcceptChannel()
140 return wait_for_channel_delegate.EndInvoke (result); in OnEndWaitForChannel()
H A DUdpDuplexChannel.cs224 close_delegate.EndInvoke (result); in OnEndClose()
236 open_delegate.EndInvoke (result); in OnEndOpen()
294 return receive_delegate.EndInvoke (result); in EndReceive()
310 return try_receive_delegate.EndInvoke (out msg, result); in EndTryReceive()
324 return wait_delegate.EndInvoke (result); in EndWaitForMessage()
343 send_delegate.EndInvoke (result); in EndSend()
H A DUdpChannelFactory.cs61 open_delegate.EndInvoke (result); in OnEndOpen()
73 close_delegate.EndInvoke (result); in OnEndClose()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Discovery/System.ServiceModel.Channels/
H A DRequestChannelBase.cs95 return request_delegate.EndInvoke (result); in EndRequest()
110 open_delegate.EndInvoke (result); in OnEndOpen()
124 close_delegate.EndInvoke (result); in OnEndClose()
/dports/security/keepass-plugin-keepassrpc/keepassrpc-1.8.0/Jayrock/tests/Jayrock/Services/
H A DTestTypeMethodImpl.cs145 impl.EndInvoke(service, ar); in EndInvokePropagatesThrownException()
159 impl.EndInvoke(null, impl.BeginInvoke(new MockService(), null, null, null)); in CannotCallEndInvokeWithNullService()
165 GetImpl("Sub").EndInvoke(new MockService(), null); in CannotCallEndInvokeWithNullAsyncResult()
177 GetImpl("Sub").EndInvoke(new MockService(), new DummyAsyncResult()); in CannotCallEndInvokeWithBadAsyncResultType()
/dports/security/keepass-plugin-keepassrpc/keepassrpc-1.8.0/Jayrock/src/Jayrock/Services/
H A DWarpedMethodImpl.cs75 public object EndInvoke(IService service, IAsyncResult asyncResult) in EndInvoke() method in Jayrock.Services.WarpedMethodImpl
77 return _result.GetValue(_handler.EndInvoke(service, asyncResult)); in EndInvoke()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing/
H A DRoutingService.cs151 process_message_duplex_session_handler.EndInvoke (result); in IDuplexSessionRouter.EndProcessMessage()
195 process_message_simplex_datagram_handler.EndInvoke (result); in ISimplexDatagramRouter.EndProcessMessage()
209 process_message_simplex_session_handler.EndInvoke (result); in ISimplexSessionRouter.EndProcessMessage()
/dports/lang/mono/mono-5.10.1.57/mcs/tests/
H A Dtest-105.cs33 int res = d.EndInvoke (ar1); in Main()
38 d.EndInvoke (ar1); in Main()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net/
H A DDns.cs241 return cb.EndInvoke(asyncResult); in EndGetHostByName()
257 return cb.EndInvoke(asyncResult); in EndResolve()
276 return cb.EndInvoke(asyncResult); in EndGetHostAddresses()
291 return ((GetHostEntryIPCallback) async.AsyncDelegate).EndInvoke (asyncResult); in EndGetHostEntry()
293 return cb.EndInvoke(asyncResult); in EndGetHostEntry()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Ipc.Win32/
H A DNamedPipeStream.cs115 return ((ReadMethod)ar.AsyncDelegate).EndInvoke(ar); in EndRead()
136 ((WriteMethod)ar.AsyncDelegate).EndInvoke(asyncResult); in EndWrite()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Timers/
H A DTimerCas.cs47 public object EndInvoke (IAsyncResult result) in EndInvoke() method in MonoCasTests.System.Timers.TestSyncInvoke
54 return EndInvoke (BeginInvoke (method, args)); in Invoke()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.Runtime.Remoting.Messaging/
H A DMonoMethodMessage.cs145 if (CallType == CallType.EndInvoke)
241 if (CallType == CallType.EndInvoke)
422 EndInvoke = 2, enumerator
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel/
H A DInstanceContext.cs216 open_delegate.EndInvoke (result); in OnEndOpen()
233 close_delegate.EndInvoke (result); in OnEndClose()

12345678