Home
last modified time | relevance | path

Searched refs:TraceSource (Results 1 – 25 of 106) sorted by relevance

12345

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/ReferenceSources/
H A DLogging.cs8 internal static TraceSource Web {
14 internal static TraceSource HttpListener {
20 internal static TraceSource Sockets {
31 internal static void Enter(TraceSource traceSource, string msg) { in Enter()
35 internal static void Enter(TraceSource traceSource, string msg, string parameters) { in Enter()
47 internal static void Exit(TraceSource traceSource, string msg) { in Exit()
59 internal static void PrintInfo(TraceSource traceSource, object obj, string msg) { in PrintInfo()
63 internal static void PrintInfo(TraceSource traceSource, string msg) { in PrintInfo()
71 internal static void PrintWarning(TraceSource traceSource, string msg) { in PrintWarning()
75 internal static void PrintError(TraceSource traceSource, string msg) { in PrintError()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DLogging.cs50 private static TraceSource s_WebTraceSource;
52 private static TraceSource s_SocketsTraceSource;
54 private static TraceSource s_CacheTraceSource;
55 private static TraceSource s_TraceSourceHttpName;
86 internal static TraceSource Web {
99 internal static TraceSource Http {
111 internal static TraceSource HttpListener {
123 internal static TraceSource Sockets {
136 internal static TraceSource RequestCache {
148 internal static TraceSource WebSockets
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/WindowsBase/System.Diagnostics/
H A DPresentationTraceSources.cs34 public static TraceSource AnimationSource {
38 public static TraceSource DataBindingSource {
42 public static TraceSource DependencyPropertySource {
46 public static TraceSource DocumentsSource {
50 public static TraceSource FreezableSource {
54 public static TraceSource HwndHostSource {
58 public static TraceSource MarkupSource {
62 public static TraceSource NameScopeSource {
66 public static TraceSource ResourceDictionarySource {
70 public static TraceSource RoutedEventSource {
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TraceSource/tests/
H A DTraceSourceClassTests.cs17 Assert.Throws<ArgumentNullException>(() => new TraceSource(null)); in ConstrutorExceptionTest()
24 var trace = new TraceSource("TestTraceSource"); in DefaultListenerTest()
32 var trace = new TraceSource("TestTraceSource"); in SetSourceSwitchExceptionTest()
39 var trace = new TraceSource("TestTraceSource"); in SetSourceSwitchTest()
48 var trace = new TraceSource("TestTraceSource"); in DefaultLevelTest()
55 var trace = new TraceSource("T1", SourceLevels.All); in CloseTest()
69 return new WeakReference(new TraceSource("TestTraceSource")); in PruneMakeRef()
75 var strongTrace = new TraceSource("TestTraceSource"); in PruneTest()
88 var trace = new TraceSource("TestTraceSource", SourceLevels.All); in TraceInformationTest()
117 var trace = new TraceSource("TestTraceSource"); in SwitchLevelTest()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Diagnostics/
H A DTraceSourceTest.cs50 new TraceSource (null); in ConstructorNullName()
57 new TraceSource (""); in ConstructorEmpty()
63 TraceSource ts = new TraceSource ("foo"); in DefaultValues()
77 TraceSource ts = new TraceSource ("foo"); in SetSourceSwitchNull()
84 TraceSource s = new TraceSource ("Source1"); in SwitchLevel()
87 s = new TraceSource("Source2", SourceLevels.All); in SwitchLevel()
90 s = new TraceSource("Source3"); in SwitchLevel()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/
H A DTrace.cs11 static TraceSource runtime;
12 static TraceSource tracking;
13 static TraceSource host;
18 internal static TraceSource Runtime
26 internal static TraceSource Tracking
34 internal static TraceSource Host
61 runtime = new TraceSource("System.Workflow.Runtime"); in WorkflowTrace()
65 tracking = new TraceSource("System.Workflow.Runtime.Tracking"); in WorkflowTrace()
68 host = new TraceSource("System.Workflow.Runtime.Hosting"); in WorkflowTrace()
/dports/lang/mono-basic/mono-basic-4.7/vbruntime/Test/Microsoft.VisualBasic.Logging/
H A DAspLogTest.cs44 Assert.AreEqual ("DefaultSource", log.TraceSource.Name, "#02"); in TestDefaults()
45 Assert.AreEqual (2, log.TraceSource.Listeners.Count, "#03"); in TestDefaults()
46 …Assert.AreEqual ("Default", Helper.getObjects<System.Diagnostics.TraceListener> (log.TraceSource.L… in TestDefaults()
47 …Assert.AreEqual ("", Helper.getObjects<System.Diagnostics.TraceListener> (log.TraceSource.Listener… in TestDefaults()
48 …aceListener", Helper.getObjects<System.Diagnostics.TraceListener> (log.TraceSource.Listeners) [0].… in TestDefaults()
49 …aceListener", Helper.getObjects<System.Diagnostics.TraceListener> (log.TraceSource.Listeners) [1].… in TestDefaults()
50 …Assert.AreEqual (System.Diagnostics.SourceLevels.Information, log.TraceSource.Switch.Level, "#08"); in TestDefaults()
H A DLogTest.cs71 log.TraceSource.Listeners.Clear(); in TestWriteEx1()
72 log.TraceSource.Listeners.Add (new System.Diagnostics.TextWriterTraceListener (writer)); in TestWriteEx1()
73 log.TraceSource.Switch.Level = System.Diagnostics.SourceLevels.All; in TestWriteEx1()
143 log.TraceSource.Listeners.Clear (); in TestWriteEntry1()
144 log.TraceSource.Listeners.Add (new System.Diagnostics.TextWriterTraceListener (writer)); in TestWriteEntry1()
145 log.TraceSource.Switch.Level = System.Diagnostics.SourceLevels.All; in TestWriteEntry1()
214 Assert.AreEqual ("DefaultSource", log.TraceSource.Name, "#02"); in TestDefaults()
215 Assert.AreEqual (2, log.TraceSource.Listeners.Count, "#03"); in TestDefaults()
216 Assert.AreEqual ("Default", getObjects (log.TraceSource.Listeners) [0].Name, "#04"); in TestDefaults()
217 Assert.AreEqual ("FileLog", getObjects (log.TraceSource.Listeners) [1].Name, "#05"); in TestDefaults()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.Activities/
H A DActivityTrace.cs9 static TraceSource activity;
10 static TraceSource rules;
12 internal static TraceSource Activity
17 internal static TraceSource Rules
44 activity = new TraceSource("System.Workflow.Activities"); in WorkflowActivityTrace()
47 rules = new TraceSource("System.Workflow.Activities.Rules"); in WorkflowActivityTrace()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/
H A DLegacyDiagnosticTrace.cs33 if (this.TraceSource != null) in OnSetLevel()
35 if (this.TraceSource.Switch.Level != SourceLevels.Off && in OnSetLevel()
38 TraceSource temp = this.TraceSource; in OnSetLevel()
115 if (this.TraceSource != null && this.HaveListeners) in TraceEvent()
127 this.TraceSource.TraceData(type, code, navigator); in TraceEvent()
130 this.TraceSource.Flush(); in TraceEvent()
182 this.TraceSource.TraceTransfer(0, null, newId); in TraceTransfer()
199 if (null != this.TraceSource) in OnShutdownTracing()
214 this.TraceSource.Flush(); in OnShutdownTracing()
228 PiiTraceSource traceSource = this.TraceSource as PiiTraceSource;
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/
H A DDiagnosticTraceBase.cs35 TraceSource traceSource;
60 public TraceSource TraceSource property in System.Runtime.Diagnostics.DiagnosticTraceBase
78 protected void SetTraceSource(TraceSource traceSource) in SetTraceSource()
143 if (this.TraceSource != null) in SetLevel()
146 this.haveListeners = this.TraceSource.Listeners.Count > 0; in SetLevel()
152 this.TraceSource.Switch.Level = level; in SetLevel()
170 if (this.TraceSource != null && (this.TraceSource.Switch.Level != this.level))
172 this.level = this.TraceSource.Switch.Level;
252 (this.TraceSource != null) && in ShouldTrace()
302 if (this.TraceSource != null) in AddDomainEventHandlersForCleanup()
[all …]
/dports/lang/mono-basic/mono-basic-4.7/vbruntime/Microsoft.VisualBasic/Microsoft.VisualBasic.Logging/
H A DLog.vb33 Private m_Source As TraceSource
40 m_Source = New TraceSource("DefaultSource")
46 m_Source = New TraceSource(name)
105 Public ReadOnly Property TraceSource() As TraceSource
H A DAspLog.vb43 TraceSource.Listeners.Add(New System.Web.WebPageTraceListener())
44 TraceSource.Switch.Level = SourceLevels.Information
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TraceSource/
H A DSystem.Diagnostics.TraceSource.sln5 …11D3-BF4B-00C04F79EFBC}") = "System.Diagnostics.TraceSource.Tests", "tests\System.Diagnostics.Trac…
10 …01F-11D3-BF4B-00C04F79EFBC}") = "System.Diagnostics.TraceSource", "src\System.Diagnostics.TraceSou…
15 …01F-11D3-BF4B-00C04F79EFBC}") = "System.Diagnostics.TraceSource", "ref\System.Diagnostics.TraceSou…
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Runtime.Serialization/System/Runtime/Serialization/
H A DSerializationTrace.cs18 static TraceSource codeGen;
42 static TraceSource CodeGenerationTraceSource
50 codeGen = new TraceSource("System.Runtime.Serialization.CodeGeneration");
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Diagnostics/
H A DOperationInvokerTrace.cs18 static TraceSource codeGenSource;
50 static TraceSource CodeGenerationTraceSource
55 … codeGenSource = new TraceSource("System.ServiceModel.OperationInvoker.CodeGeneration");
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Net/net/
H A DLogging.cs78 internal static void Enter(TraceSource source, string method) in Enter()
85 internal static void Leave(TraceSource source, string message) in Leave()
104 …internal static void DumpData(TraceSource source, TraceEventType eventType, int maxDataSize, byte[… in DumpData()
150 internal class P2PTraceSource : TraceSource
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TraceSource/src/System/Diagnostics/
H A DTraceSource.cs13 public class TraceSource class
25 public TraceSource(string name) in TraceSource() method in System.Diagnostics.TraceSource
30 public TraceSource(string name, SourceLevels defaultLevel) in TraceSource() method in System.Diagnostics.TraceSource
57 TraceSource tracesource = ((TraceSource)s_tracesources[i].Target); in _pruneCachedTraceSources()
157 TraceSource tracesource = ((TraceSource)s_tracesources[i].Target); in RefreshAll()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Facades/System.Diagnostics.TraceSource/
H A DMakefile3 thisdir = class/Facades/System.Diagnostics.TraceSource
10 LIBRARY = System.Diagnostics.TraceSource.dll
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/diagnostics/
H A DTraceSource.cs18 public class TraceSource { class
29 public TraceSource(string name) in TraceSource() method in System.Diagnostics.TraceSource
33 public TraceSource(string name, SourceLevels defaultLevel) { in TraceSource() method in System.Diagnostics.TraceSource
56 TraceSource tracesource = ((TraceSource)tracesources[i].Target); in _pruneCachedTraceSources()
164 TraceSource tracesource = ((TraceSource) tracesources[i].Target); in RefreshAll()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/ui/src/controller/
H A Dtrace_converter.ts16 import {TraceSource} from '../common/state';
58 pid: number, src: TraceSource, ts1: number, ts2?: number) {
105 async function generateBlob(src: TraceSource) {
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/ui/src/controller/
H A Dtrace_converter.ts16 import {TraceSource} from '../common/state';
58 pid: number, src: TraceSource, ts1: number, ts2?: number) {
105 async function generateBlob(src: TraceSource) {
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Diagnostics/
H A DTraceSourceTraceWriter.cs15 …internal static readonly TraceSource Source = new TraceSource("System.ComponentModel.Composition",…
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Composition.Convention/src/Microsoft/Composition/Diagnostics/
H A DTraceSourceTraceWriter.cs15 …internal static readonly TraceSource Source = new TraceSource("Microsoft.Composition", SourceLevel…
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel/
H A DLogger.cs75 static readonly TraceSource source = new TraceSource ("System.ServiceModel");
76 …static readonly TraceSource message_source = new TraceSource ("System.ServiceModel.MessageLogging"…

12345