Home
last modified time | relevance | path

Searched refs:IsDisposed (Results 1 – 25 of 356) sorted by relevance

12345678910>>...15

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.Composition/tests/System/Integration/
H A DLifetimeTests.cs31 Assert.False(IsDisposed); in Dispose()
32 IsDisposed = true; in Dispose()
52 Assert.False(IsDisposed); in Dispose()
53 IsDisposed = true; in Dispose()
217 Assert.False(IsDisposed); in Dispose()
218 IsDisposed = true; in Dispose()
241 IsDisposed = true; in Dispose()
381 IsDisposed = true; in Dispose()
396 if (this.IsDisposed)
402 if (this.IsDisposed)
[all …]
/dports/lang/mono/mono-5.10.1.57/external/rx/Rx/NET/Source/Tests.System.Reactive/Tests/Disposables/
H A DDisposableTests.cs49 Assert.IsTrue(c.IsDisposed); in AnonymousDisposable_Dispose()
64 Assert.IsFalse(d.IsDisposed); in BooleanDisposable()
66 Assert.IsTrue(d.IsDisposed); in BooleanDisposable()
68 Assert.IsTrue(d.IsDisposed); in BooleanDisposable()
95 Assert.IsTrue(d.IsDisposed); in SingleAssignmentDisposable_DisposeAfterSet()
109 Assert.IsTrue(d.IsDisposed); in SingleAssignmentDisposable_DisposeBeforeSet()
272 Assert.IsTrue(g.IsDisposed); in CompositeDisposable_AddAfterDispose()
389 Assert.IsTrue(c.IsDisposed); in CancellationDisposable_DefaultCtor()
402 Assert.IsTrue(c.IsDisposed); in CancellationDisposable_TokenCtor()
428 Assert.IsTrue(c.IsDisposed); in ContextDisposable()
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/modules/mono/editor/GodotTools/GodotTools.IdeMessaging/
H A DClient.cs50 public bool IsDisposed { get; private set; } property in GodotTools.IdeMessaging.Client
60 if (peer != null && !peer.IsDisposed)
65 if (peer != null && !peer.IsDisposed)
75 if (peer != null && !peer.IsDisposed)
92 if (IsDisposed) in Dispose()
99 IsDisposed = true; in Dispose()
134 if (IsDisposed) in OnMetaFileChanged()
139 if (IsDisposed) in OnMetaFileChanged()
157 if (IsDisposed) in OnMetaFileDeleted()
170 if (IsDisposed) in OnMetaFileDeleted()
[all …]
/dports/devel/godot/godot-3.2.3-stable/modules/mono/editor/GodotTools/GodotTools.IdeMessaging/
H A DClient.cs50 public bool IsDisposed { get; private set; } property in GodotTools.IdeMessaging.Client
60 if (peer != null && !peer.IsDisposed)
65 if (peer != null && !peer.IsDisposed)
75 if (peer != null && !peer.IsDisposed)
92 if (IsDisposed) in Dispose()
99 IsDisposed = true; in Dispose()
134 if (IsDisposed) in OnMetaFileChanged()
139 if (IsDisposed) in OnMetaFileChanged()
157 if (IsDisposed) in OnMetaFileDeleted()
170 if (IsDisposed) in OnMetaFileDeleted()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Composition/tests/
H A DExportFactoryTests.cs57 public bool IsDisposed; field in System.Composition.UnitTests.ExportFactoryTests.A
61 IsDisposed = true; in Dispose()
142 Assert.False(((A)a.Value).IsDisposed); in NonSharedInstancesCreatedByAnExportFactoryAreControlledByTheirExportLifetimeContext()
144 Assert.True(((A)a.Value).IsDisposed); in NonSharedInstancesCreatedByAnExportFactoryAreControlledByTheirExportLifetimeContext()
158 Assert.False(a.IsDisposed); in DependenciesOfSharedPartsAreResolvedInTheGlobalScope()
160 Assert.True(a.IsDisposed); in DependenciesOfSharedPartsAreResolvedInTheGlobalScope()
187 Assert.True(a.IsDisposed); in TheProductOfAnExportFactoryCanBeDisposedDuringDisposalOfTheParent()
215 public bool IsDisposed { get; set; } property in System.Composition.UnitTests.ExportFactoryTests.Disposable
219 IsDisposed = true; in Dispose()
246 Assert.True(hdd.Dependency.IsDisposed); in WhenReleasingAnExportFromAnExportFactoryItsNonSharedDependenciesAreDisposed()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/tests/XmlReader/Tests/
H A DDisposeTests.cs13 public MyXmlReader() { IsDisposed = false; } in MyXmlReader()
14 public bool IsDisposed { get; private set; } property in System.Xml.Tests.MyXmlReader
15 protected override void Dispose(bool disposing) { IsDisposed = true; } in Dispose()
116 Assert.False(myreader.IsDisposed); in XmlReaderDisposeWorksWithDerivingClasses()
118 Assert.True(myreader.IsDisposed); in XmlReaderDisposeWorksWithDerivingClasses()
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/SharpZipLib/ICSharpCode.SharpZipLib.Tests/Lzw/
H A DLzwTests.cs65 Assert.IsFalse(memStream.IsDisposed, "Shouldnt be disposed initially"); in InputStreamOwnership()
70 Assert.IsTrue(memStream.IsDisposed, "Should be disposed after parent owner close"); in InputStreamOwnership()
76 Assert.IsFalse(memStream.IsDisposed, "Shouldnt be disposed initially"); in InputStreamOwnership()
82 Assert.IsFalse(memStream.IsDisposed, "Should not be disposed after parent owner close"); in InputStreamOwnership()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Channels/System/ServiceModel/Channels/
H A DUdpSocketReceiveManager.cs49 bool IsDisposed property in System.ServiceModel.Channels.UdpSocketReceiveManager
69 if (this.IsDisposed) in Close()
143 if (thisPtr.IsDisposed) in OnStartReceiving()
208 if (this.IsDisposed) in OnReceiveFrom()
229 if (!this.IsDisposed && continueReceiving) in OnReceiveFrom()
247 … if (!this.IsDisposed && socket.PendingReceiveCount < this.maxPendingReceivesPerSocket) in StartAsyncReceive()
301 … while (!this.IsDisposed && socket.PendingReceiveCount < this.maxPendingReceivesPerSocket) in EnsureReceiving()
330 if (this.IsDisposed) in ThrowIfDisposed()
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/SharpZipLib/ICSharpCode.SharpZipLib.Tests/Base/
H A DInflaterDeflaterTests.cs190 Assert.IsFalse(memStream.IsDisposed, "Shouldnt be disposed initially"); in DeflatorStreamOwnership()
195 Assert.IsTrue(memStream.IsDisposed, "Should be disposed after parent owner close"); in DeflatorStreamOwnership()
201 Assert.IsFalse(memStream.IsDisposed, "Shouldnt be disposed initially"); in DeflatorStreamOwnership()
207 Assert.IsFalse(memStream.IsDisposed, "Should not be disposed after parent owner close"); in DeflatorStreamOwnership()
219 Assert.IsFalse(memStream.IsDisposed, "Shouldnt be disposed initially"); in InflatorStreamOwnership()
224 Assert.IsTrue(memStream.IsDisposed, "Should be disposed after parent owner close"); in InflatorStreamOwnership()
230 Assert.IsFalse(memStream.IsDisposed, "Shouldnt be disposed initially"); in InflatorStreamOwnership()
236 Assert.IsFalse(memStream.IsDisposed, "Should not be disposed after parent owner close"); in InflatorStreamOwnership()
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/SharpZipLib/ICSharpCode.SharpZipLib.Tests/GZip/
H A DGZipTests.cs125 Assert.IsFalse(memStream.IsDisposed, "Shouldnt be disposed initially"); in OutputStreamOwnership()
130 Assert.IsTrue(memStream.IsDisposed, "Should be disposed after parent owner close"); in OutputStreamOwnership()
136 Assert.IsFalse(memStream.IsDisposed, "Shouldnt be disposed initially"); in OutputStreamOwnership()
142 Assert.IsFalse(memStream.IsDisposed, "Should not be disposed after parent owner close"); in OutputStreamOwnership()
153 Assert.IsFalse(memStream.IsDisposed, "Shouldnt be disposed initially"); in InputStreamOwnership()
158 Assert.IsTrue(memStream.IsDisposed, "Should be disposed after parent owner close"); in InputStreamOwnership()
164 Assert.IsFalse(memStream.IsDisposed, "Shouldnt be disposed initially"); in InputStreamOwnership()
170 Assert.IsFalse(memStream.IsDisposed, "Should not be disposed after parent owner close"); in InputStreamOwnership()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/tests/XmlWriter/
H A DDisposeTests.cs13 public MyXmlWriter() { IsDisposed = false; } in MyXmlWriter()
14 public bool IsDisposed { get; private set; } property in System.Xml.Tests.MyXmlWriter
15 protected override void Dispose(bool disposing) { IsDisposed = true; } in Dispose()
120 Assert.False(mywriter.IsDisposed); in XmlWriterDisposeWorksWithDerivingClasses()
122 Assert.True(mywriter.IsDisposed); in XmlWriterDisposeWorksWithDerivingClasses()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Memory/tests/Memory/
H A DCustomMemoryForTest.cs28 public override bool IsDisposed => _disposed; field in System.MemoryTests.CustomMemoryForTest
36 if (IsDisposed)
55 if (IsDisposed) in TryGetArray()
77 if (IsDisposed) in Retain()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DChannelBindingMessageProperty.cs34 bool IsDisposed property in System.ServiceModel.Channels.ChannelBindingMessageProperty
113 if (!this.IsDisposed) in Dispose()
117 if (!this.IsDisposed && --this.refCount == 0) in Dispose()
131 if (this.IsDisposed) in ThrowIfDisposed()
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/apache/thrift/lib/netstd/Thrift/Transport/
H A DTFramedTransport.cs34 private bool IsDisposed; field in Thrift.Transport.TFramedTransport
51 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
173 if (IsDisposed) in CheckNotDisposed()
182 if (!IsDisposed) in Dispose()
191 IsDisposed = true; in Dispose()
H A DTBufferedTransport.cs33 private bool IsDisposed; field in Thrift.Transport.TBufferedTransport
70 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
177 if (IsDisposed) in CheckNotDisposed()
186 if (!IsDisposed) in Dispose()
195 IsDisposed = true; in Dispose()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/thrift/lib/netstd/Thrift/Transport/Layered/
H A DTFramedTransport.cs34 private bool IsDisposed; field in Thrift.Transport.TFramedTransport
52 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
170 if (IsDisposed) in CheckNotDisposed()
179 if (!IsDisposed) in Dispose()
188 IsDisposed = true; in Dispose()
H A DTBufferedTransport.cs32 private bool IsDisposed; field in Thrift.Transport.TBufferedTransport
70 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
188 if (IsDisposed) in CheckNotDisposed()
197 if (!IsDisposed) in Dispose()
206 IsDisposed = true; in Dispose()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/window/
H A Dsyschild.cxx45 if( pWindow->IsDisposed() ) in ImplSysChildProc()
50 if( pWindow->IsDisposed() ) in ImplSysChildProc()
58 if (pWindow->IsDisposed()) in ImplSysChildProc()
74 if( pWindow->IsDisposed() ) in ImplSysChildProc()
77 if( pWindow->IsDisposed() ) in ImplSysChildProc()
/dports/devel/py-thrift/thrift-0.14.0/lib/netstd/Thrift/Transport/Layered/
H A DTFramedTransport.cs34 private bool IsDisposed; field in Thrift.Transport.TFramedTransport
52 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
170 if (IsDisposed) in CheckNotDisposed()
179 if (!IsDisposed) in Dispose()
188 IsDisposed = true; in Dispose()
H A DTBufferedTransport.cs32 private bool IsDisposed; field in Thrift.Transport.TBufferedTransport
70 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
188 if (IsDisposed) in CheckNotDisposed()
197 if (!IsDisposed) in Dispose()
206 IsDisposed = true; in Dispose()
/dports/devel/thrift-c_glib/thrift-0.14.0/lib/netstd/Thrift/Transport/Layered/
H A DTFramedTransport.cs34 private bool IsDisposed; field in Thrift.Transport.TFramedTransport
52 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
170 if (IsDisposed) in CheckNotDisposed()
179 if (!IsDisposed) in Dispose()
188 IsDisposed = true; in Dispose()
/dports/devel/thrift-cpp/thrift-0.14.0/lib/netstd/Thrift/Transport/Layered/
H A DTFramedTransport.cs34 private bool IsDisposed; field in Thrift.Transport.TFramedTransport
52 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
170 if (IsDisposed) in CheckNotDisposed()
179 if (!IsDisposed) in Dispose()
188 IsDisposed = true; in Dispose()
H A DTBufferedTransport.cs32 private bool IsDisposed; field in Thrift.Transport.TBufferedTransport
70 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
188 if (IsDisposed) in CheckNotDisposed()
197 if (!IsDisposed) in Dispose()
206 IsDisposed = true; in Dispose()
/dports/devel/thrift/thrift-0.14.0/lib/netstd/Thrift/Transport/Layered/
H A DTFramedTransport.cs34 private bool IsDisposed; field in Thrift.Transport.TFramedTransport
52 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
170 if (IsDisposed) in CheckNotDisposed()
179 if (!IsDisposed) in Dispose()
188 IsDisposed = true; in Dispose()
/dports/devel/node-thrift/thrift-0.14.0/lib/netstd/Thrift/Transport/Layered/
H A DTFramedTransport.cs34 private bool IsDisposed; field in Thrift.Transport.TFramedTransport
52 public override bool IsOpen => !IsDisposed && InnerTransport.IsOpen;
170 if (IsDisposed) in CheckNotDisposed()
179 if (!IsDisposed) in Dispose()
188 IsDisposed = true; in Dispose()

12345678910>>...15