Home
last modified time | relevance | path

Searched refs:completedSynchronously (Results 1 – 25 of 83) sorted by relevance

1234

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DOpenCollectionAsyncResult.cs13 bool completedSynchronously; field in System.ServiceModel.OpenCollectionAsyncResult
23 completedSynchronously = true; in OpenCollectionAsyncResult()
67 void Decrement(bool completedSynchronously) in Decrement() argument
69 if (completedSynchronously == false) in Decrement()
70 this.completedSynchronously = false; in Decrement()
74 Complete(this.completedSynchronously, this.exception); in Decrement()
76 Complete(this.completedSynchronously); in Decrement()
80 void Decrement(bool completedSynchronously, Exception exception) in Decrement() argument
83 this.Decrement(completedSynchronously); in Decrement()
H A DCloseCollectionAsyncResult.cs13 bool completedSynchronously; field in System.ServiceModel.CloseCollectionAsyncResult
22 completedSynchronously = true; in CloseCollectionAsyncResult()
92 void Decrement(bool completedSynchronously) in Decrement() argument
94 if (completedSynchronously == false) in Decrement()
95 this.completedSynchronously = false; in Decrement()
99 Complete(this.completedSynchronously, this.exception); in Decrement()
101 Complete(this.completedSynchronously); in Decrement()
105 void Decrement(bool completedSynchronously, Exception exception) in Decrement() argument
108 this.Decrement(completedSynchronously); in Decrement()
H A DServiceChannel.cs1946 if (Fx.IsFatal(e) || completedSynchronously) in FinishEnsureInteractiveInit()
1959 this.StartEnsureOpen(completedSynchronously); in FinishEnsureInteractiveInit()
1963 void StartEnsureOpen(bool completedSynchronously) in StartEnsureOpen() argument
1975 if (Fx.IsFatal(e) || completedSynchronously) in StartEnsureOpen()
2011 if (Fx.IsFatal(e) || completedSynchronously) in FinishEnsureOpen()
2024 this.StartSend(completedSynchronously); in FinishEnsureOpen()
2029 void StartSend(bool completedSynchronously) in StartSend() argument
2054 if (completedSynchronously) in StartSend()
2072 this.FinishSend(result, completedSynchronously); in StartSend()
2111 if (completedSynchronously) in FinishSend()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Internals/System/Runtime/
H A DAsyncResult.cs18 bool completedSynchronously; field in System.Runtime.AsyncResult
83 return completedSynchronously;
121 protected void Complete(bool completedSynchronously) in Complete() argument
137 this.completedSynchronously = completedSynchronously; in Complete()
155 if (completedSynchronously) in Complete()
202 protected void Complete(bool completedSynchronously, Exception exception) in Complete() argument
205 Complete(completedSynchronously); in Complete()
H A DAsyncEventArgs.cs68 public void Complete(bool completedSynchronously) in Complete() argument
70 this.Complete(completedSynchronously, null); in Complete()
73 public virtual void Complete(bool completedSynchronously, Exception exception) in Complete() argument
78 if (completedSynchronously) in Complete()
H A DTypedAsyncResult.cs20 protected void Complete(T data, bool completedSynchronously) in Complete() argument
23 Complete(completedSynchronously); in Complete()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.IdentityModel/System/IdentityModel/
H A DTypedAsyncResult.cs45 public void Complete( T result, bool completedSynchronously ) in Complete() argument
49 Complete( completedSynchronously ); in Complete()
59 public void Complete( T result, bool completedSynchronously, Exception exception ) in Complete() argument
63 Complete( completedSynchronously, exception); in Complete()
H A DAsyncResult.cs100 protected void Complete(bool completedSynchronously) in Complete() argument
102 Complete(completedSynchronously, null); in Complete()
111 protected void Complete(bool completedSynchronously, Exception exception) in Complete() argument
119 completedSync = completedSynchronously; in Complete()
122 if (completedSynchronously) in Complete()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/threading/Tasks/
H A DTaskToApm.cs55 asyncResult = new TaskWrapperAsyncResult(task, state, completedSynchronously: true); in Begin()
64 …tate ? (IAsyncResult)task : new TaskWrapperAsyncResult(task, state, completedSynchronously: false); in Begin()
172 internal TaskWrapperAsyncResult(Task task, object state, bool completedSynchronously) in TaskWrapperAsyncResult() argument
175 …Contract.Requires(!completedSynchronously || task.IsCompleted, "If completedSynchronously is true,… in TaskWrapperAsyncResult()
179 m_completedSynchronously = completedSynchronously; in TaskWrapperAsyncResult()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/Threading/Tasks/
H A DTaskToApm.cs46 asyncResult = new TaskWrapperAsyncResult(task, state, completedSynchronously: true); in Begin()
53 …tate ? (IAsyncResult)task : new TaskWrapperAsyncResult(task, state, completedSynchronously: false); in Begin()
169 internal TaskWrapperAsyncResult(Task task, object state, bool completedSynchronously) in TaskWrapperAsyncResult() argument
172 …Debug.Assert(!completedSynchronously || task.IsCompleted, "If completedSynchronously is true, the … in TaskWrapperAsyncResult()
176 _completedSynchronously = completedSynchronously; in TaskWrapperAsyncResult()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/shared/System/Threading/Tasks/
H A DTaskToApm.cs46 asyncResult = new TaskWrapperAsyncResult(task, state, completedSynchronously: true); in Begin()
53 …tate ? (IAsyncResult)task : new TaskWrapperAsyncResult(task, state, completedSynchronously: false); in Begin()
169 internal TaskWrapperAsyncResult(Task task, object state, bool completedSynchronously) in TaskWrapperAsyncResult() argument
172 …Debug.Assert(!completedSynchronously || task.IsCompleted, "If completedSynchronously is true, the … in TaskWrapperAsyncResult()
176 _completedSynchronously = completedSynchronously; in TaskWrapperAsyncResult()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/CoreLib/System/Threading/Tasks/
H A DTaskToApm.cs46 asyncResult = new TaskWrapperAsyncResult(task, state, completedSynchronously: true); in Begin()
53 …tate ? (IAsyncResult)task : new TaskWrapperAsyncResult(task, state, completedSynchronously: false); in Begin()
169 internal TaskWrapperAsyncResult(Task task, object state, bool completedSynchronously) in TaskWrapperAsyncResult() argument
172 …Debug.Assert(!completedSynchronously || task.IsCompleted, "If completedSynchronously is true, the … in TaskWrapperAsyncResult()
176 _completedSynchronously = completedSynchronously; in TaskWrapperAsyncResult()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Dispatcher/
H A DInstanceContextManager.cs280 bool completedSynchronously; field in System.ServiceModel.Dispatcher.CloseInputAsyncResult
290 completedSynchronously = true; in CloseInputAsyncResult()
346 void Decrement(bool completedSynchronously) in Decrement() argument
348 if (completedSynchronously == false) in Decrement()
349 this.completedSynchronously = false; in Decrement()
353 Complete(this.completedSynchronously, this.exception); in Decrement()
355 Complete(this.completedSynchronously); in Decrement()
359 void Decrement(bool completedSynchronously, Exception exception) in Decrement() argument
362 this.Decrement(completedSynchronously); in Decrement()
H A DImmutableClientRuntime.cs276 void CallBegin(bool completedSynchronously) in CallBegin() argument
313 this.CallComplete(completedSynchronously, exception); in CallBegin()
318 this.CallComplete(completedSynchronously, null); in CallBegin()
360 void CallComplete(bool completedSynchronously, Exception exception) in CallComplete() argument
362 this.Complete(completedSynchronously, exception); in CallComplete()
H A DMultipleReceiveBinder.cs153 void HandleReceiveRequestComplete(IAsyncResult innerResult, bool completedSynchronously) in HandleReceiveRequestComplete() argument
179 receiveResult.Complete(completedSynchronously, completionException); in HandleReceiveRequestComplete()
256 public new void Complete(bool completedSynchronously, Exception completionException) in Complete() argument
258 base.Complete(completedSynchronously, completionException); in Complete()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/IO/compression/
H A DDeflateStreamAsyncResult.cs95 internal void InvokeCallback(bool completedSynchronously, object result) { in InvokeCallback() argument
96 Complete(completedSynchronously, result); in InvokeCallback()
105 private void Complete(bool completedSynchronously, object result) { in Complete() argument
106 m_CompletedSynchronously = completedSynchronously; in Complete()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/
H A DServiceHost.cs1319 void CloseListeners(bool completedSynchronously) in CloseListeners() argument
1340 if (Fx.IsFatal(e) || completedSynchronously) in CloseListeners()
1374 if (Fx.IsFatal(e) || completedSynchronously) in FinishCloseListeners()
1387 this.CloseInput(completedSynchronously); in FinishCloseListeners()
1392 void CloseInput(bool completedSynchronously) in CloseInput() argument
1410 if (Fx.IsFatal(e) || completedSynchronously) in CloseInput()
1449 if (Fx.IsFatal(e) || completedSynchronously) in FinishCloseInput()
1462 this.CloseInstances(completedSynchronously); in FinishCloseInput()
1467 void CloseInstances(bool completedSynchronously) in CloseInstances() argument
1480 if (Fx.IsFatal(e) || completedSynchronously) in CloseInstances()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Security/
H A DInfocardInteractiveChannelInitializer.cs71 void CallBegin(bool completedSynchronously) in CallBegin() argument
111 this.CallComplete(completedSynchronously, null); in CallBegin()
154 void CallComplete(bool completedSynchronously, Exception exception) in CallComplete() argument
156 this.Complete(completedSynchronously, exception); in CallComplete()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Mvc/Async/
H A DSimpleAsyncResult.cs44 public void MarkCompleted(bool completedSynchronously, AsyncCallback callback) in MarkCompleted() argument
46 _completedSynchronously = completedSynchronously; in MarkCompleted()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Mvc3/Mvc/Async/
H A DSimpleAsyncResult.cs45 public void MarkCompleted(bool completedSynchronously, AsyncCallback callback) { in MarkCompleted() argument
46 _completedSynchronously = completedSynchronously; in MarkCompleted()
H A DAsyncResultWrapper.cs162 bool completedSynchronously; in Begin()
169 completedSynchronously = _innerAsyncResult.CompletedSynchronously; in Begin()
170 if (!completedSynchronously) { in Begin()
177 if (completedSynchronously) { in Begin()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Discovery/System/ServiceModel/Discovery/
H A DIteratorAsyncResult.cs16 bool completedSynchronously; field in System.ServiceModel.Discovery.IteratorAsyncResult
59 this.completedSynchronously = true; in Start()
80 base.Complete(this.completedSynchronously, error); in CompleteOnce()
204 this.completedSynchronously = false; in OnStepCompleted()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/mail/
H A DMimeMultiPart.cs74 ((MimePartContext)result.AsyncState).completedSynchronously = false; in MimeWriterCloseCallback()
96 ((MimePartContext)result.AsyncState).completedSynchronously = false; in MimePartSentCallback()
135 ((MimePartContext)result.AsyncState).completedSynchronously = false; in ContentStreamCallback()
195 internal bool completedSynchronously = true; field in System.Net.Mime.MimeMultiPart.MimePartContext
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities/System/Activities/
H A DActivityInstance.cs956 bool completedSynchronously = true; in ResolveArguments()
968 completedSynchronously = false; in ResolveArguments()
988 completedSynchronously = false; in ResolveArguments()
995 if (completedSynchronously && startIndex == 0) in ResolveArguments()
1005 return completedSynchronously; in ResolveArguments()
1039 bool completedSynchronously = true; in ResolveVariables()
1066 completedSynchronously &= ResolveVariable(runtimeVariables[i], executor); in ResolveVariables()
1070 return completedSynchronously; in ResolveVariables()
1076 bool completedSynchronously = true; in ResolveVariable()
1088 completedSynchronously = false; in ResolveVariable()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/test/System.Web.Mvc.Test/Async/Test/
H A DSimpleAsyncResultTest.cs44 bool completedSynchronously = asyncResult.CompletedSynchronously; in CompletedSynchronouslyProperty()
47 Assert.False(completedSynchronously); in CompletedSynchronouslyProperty()

1234