Home
last modified time | relevance | path

Searched refs:TraceOutputOptions (Results 1 – 25 of 31) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/System/Diagnostics/Eventing/
H A DEventProviderTraceListener.cs203 if ((eventCache != null) && (TraceOutputOptions & TraceOptions.Callstack) != 0) in TraceData()
264 if ((eventCache != null) && (TraceOutputOptions & TraceOptions.Callstack) != 0) in TraceData()
293 if ((eventCache != null) && (TraceOutputOptions & TraceOptions.Callstack) != 0) in TraceEvent()
322 if ((eventCache != null) && (TraceOutputOptions & TraceOptions.Callstack) != 0) in TraceEvent()
353 if ((eventCache != null) && (TraceOutputOptions & TraceOptions.Callstack) != 0) in TraceEvent()
368 if ((eventCache != null) && (TraceOutputOptions & TraceOptions.Callstack) != 0) in TraceEvent()
419 if ((eventCache != null) && (TraceOutputOptions & TraceOptions.Callstack) != 0) in TraceTransfer()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/diagnostics/
H A DListenerElementsCollection.cs169 public TraceOptions TraceOutputOptions { property in System.Diagnostics.ListenerElement
218 …es[_propFilter.Name].ValueOrigin == PropertyValueOrigin.SetHere || TraceOutputOptions != TraceOpti… in GetRuntimeObject()
238 newListener.TraceOutputOptions = TraceOutputOptions; in GetRuntimeObject()
329 …es[_propFilter.Name].ValueOrigin == PropertyValueOrigin.SetHere || TraceOutputOptions != TraceOpti… in RefreshRuntimeObject()
352 listener.TraceOutputOptions = TraceOutputOptions; in RefreshRuntimeObject()
H A DTraceListener.cs158 public TraceOptions TraceOutputOptions { property in System.Diagnostics.TraceListener
447 return (opts & TraceOutputOptions) != 0; in IsEnabled()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TraceSource/tests/
H A DTraceListenerClassTests.cs56 listener.TraceOutputOptions = TraceOptions.None; in TraceOutputOptionsTest()
62 listener.TraceOutputOptions = missingValue; in TraceOutputOptionsTest()
65 listener.TraceOutputOptions = missingValue; in TraceOutputOptionsTest()
68 … Assert.Throws<ArgumentOutOfRangeException>(() => listener.TraceOutputOptions = badValue); in TraceOutputOptionsTest()
287 listener.TraceOutputOptions = opts; in WriteFooterTest()
296 listener.TraceOutputOptions = opts; in WriteFooterTest()
303 listener.TraceOutputOptions = opts; in WriteFooterTest()
/dports/lang/mono-basic/mono-basic-4.7/vbruntime/Microsoft.VisualBasic/Microsoft.VisualBasic.Logging/
H A DFileLogTraceListener.vb136 If CBool(Me.TraceOutputOptions And TraceOptions.Callstack) Then
140 If CBool(Me.TraceOutputOptions And TraceOptions.LogicalOperationStack) Then
148 If CBool(Me.TraceOutputOptions And TraceOptions.DateTime) Then
152 If CBool(Me.TraceOutputOptions And TraceOptions.ProcessId) Then
156 If CBool(Me.TraceOutputOptions And TraceOptions.ThreadId) Then
160 If CBool(Me.TraceOutputOptions And TraceOptions.Timestamp) Then
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Diagnostics/
H A DTraceListenerTest.cs77 new TextWriterTraceListener (TextWriter.Null).TraceOutputOptions, "#1"); in TraceOptionValues()
79 new XmlWriterTraceListener (TextWriter.Null).TraceOutputOptions, "#2"); in TraceOptionValues()
85 …t.TraceOutputOptions = TraceOptions.LogicalOperationStack | TraceOptions.DateTime | TraceOptions.T… in TraceOptionValues()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/System/Diagnostics/
H A DEventSchemaTraceListener.cs188 … BuildHeader(writer, source, eventType, id, eventCache, null, false, this.TraceOutputOptions); in TraceEvent()
198 BuildFooter(writer, eventType, eventCache, false, this.TraceOutputOptions); in TraceEvent()
208 … BuildHeader(writer, source, eventType, id, eventCache, null, false, this.TraceOutputOptions); in TraceEvent()
210 BuildFooter(writer, eventType, eventCache, false, this.TraceOutputOptions); in TraceEvent()
220 BuildHeader(writer, source, eventType, id, eventCache, null, true, this.TraceOutputOptions); in TraceData()
229 BuildFooter(writer, eventType, eventCache, true, this.TraceOutputOptions); in TraceData()
239 BuildHeader(writer, source, eventType, id, eventCache, null, true, this.TraceOutputOptions); in TraceData()
251 BuildFooter(writer, eventType, eventCache, true, this.TraceOutputOptions); in TraceData()
258 …entType.Transfer, id, eventCache, relatedActivityId.ToString("B"), false, this.TraceOutputOptions); in TraceTransfer()
260 BuildFooter(writer, TraceEventType.Transfer, eventCache, false, this.TraceOutputOptions); in TraceTransfer()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TextWriterTraceListener/tests/
H A DDelimiterWriteMethodTests.cs53 …target.TraceOutputOptions = TraceOptions.ProcessId | TraceOptions.ThreadId | TraceOptions.DateTime… in TraceEvent_FormatString_Test()
69 …target.TraceOutputOptions = TraceOptions.ProcessId | TraceOptions.ThreadId | TraceOptions.DateTime… in TraceEvent_String_Test()
105 …target.TraceOutputOptions = TraceOptions.ProcessId | TraceOptions.ThreadId | TraceOptions.DateTime… in TraceData_Object_Test()
141 …target.TraceOutputOptions = TraceOptions.ProcessId | TraceOptions.ThreadId | TraceOptions.DateTime… in TraceData_ObjectArray_Test()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/tests/StressTests/System.Data.SqlClient.Stress.Tests/
H A DFilteredDefaultTraceListener.cs95 base.TraceOutputOptions = listenerToClone.TraceOutputOptions; in FilteredDefaultTraceListener()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/
H A DIisTraceListener.cs133 if (eventCache == null || TraceOutputOptions == TraceOptions.None) { in AppendTraceOptions()
182 return (opts & TraceOutputOptions) != 0; in IsEnabled()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TraceSource/src/System/Diagnostics/
H A DTraceListener.cs155 public TraceOptions TraceOutputOptions property in System.Diagnostics.TraceListener
437 return (opts & TraceOutputOptions) != 0; in IsEnabled()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/System/Linq/Parallel/Utils/
H A DTraceHelpers.cs92 … l.TraceOutputOptions = TraceOptions.Callstack | TraceOptions.DateTime | TraceOptions.ThreadId; in SetVerbose()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TextWriterTraceListener/src/System/Diagnostics/
H A DDelimitedListTraceListener.cs242 return (opts & TraceOutputOptions) != 0; in IsEnabled()
/dports/lang/mono-basic/mono-basic-4.7/vbruntime/Test/Microsoft.VisualBasic.Logging/
H A DFileLogTraceListener.cs252 …log.TraceOutputOptions = System.Diagnostics.TraceOptions.DateTime | System.Diagnostics.TraceOption… in WriteTest()
270 …log.TraceOutputOptions = System.Diagnostics.TraceOptions.DateTime | System.Diagnostics.TraceOption… in WriteTest()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TraceSource/ref/
H A DSystem.Diagnostics.TraceSource.cs202 public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } } property in System.Diagnostics.TraceListener
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Diagnostics/
H A DDiagnosticsConfigurationHandler.cs494 l.TraceOutputOptions = trace_options; in AddTraceListener()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A DSystem.cs5014 public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } } property in System.Diagnostics.TraceListener
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A DSystem.cs5049 public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } } property in System.Diagnostics.TraceListener
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/
H A DSystem.cs5012 public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } } property in System.Diagnostics.TraceListener
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/
H A DSystem.cs5045 public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } } property in System.Diagnostics.TraceListener
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.0/
H A DSystem.cs7473 public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } } property in System.Diagnostics.TraceListener
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v2.0/
H A DSystem.cs7191 public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } } property in System.Diagnostics.TraceListener
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/
H A DSystem.cs7407 public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } } property in System.Diagnostics.TraceListener
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/
H A DSystem.cs7436 public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } } property in System.Diagnostics.TraceListener
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6/
H A DSystem.cs7435 public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } } property in System.Diagnostics.TraceListener

12