Home
last modified time | relevance | path

Searched refs:WriteEvent (Results 1 – 25 of 551) sorted by relevance

12345678910>>...23

/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.Reflection.Core/src/System/Reflection/Runtime/Tracing/
H A DReflectionEventSource.cs31 WriteEvent(1, typeName); in TypeInfo_CustomAttributes()
37 WriteEvent(2, typeName); in TypeInfo_Name()
43 WriteEvent(3, typeName); in TypeInfo_BaseType()
49 WriteEvent(4, typeName); in TypeInfo_DeclaredConstructors()
55 WriteEvent(5, typeName); in TypeInfo_DeclaredEvents()
61 WriteEvent(6, typeName); in TypeInfo_DeclaredFields()
67 WriteEvent(7, typeName); in TypeInfo_DeclaredMembers()
73 WriteEvent(8, typeName); in TypeInfo_DeclaredMethods()
79 WriteEvent(9, typeName); in TypeInfo_DeclaredNestedTypes()
187 WriteEvent(27, caName); in CustomAttributeData_ConstructorArguments()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.Diagnostics.Tracing/
H A DEventSource.cs171 protected void WriteEvent (int eventId) in WriteEvent() method in System.Diagnostics.Tracing.EventSource
173 WriteEvent (eventId, new object[] { } ); in WriteEvent()
176 protected void WriteEvent (int eventId, byte[] arg1) in WriteEvent() method in System.Diagnostics.Tracing.EventSource
178 WriteEvent (eventId, new object[] { arg1 } ); in WriteEvent()
181 protected void WriteEvent (int eventId, int arg1) in WriteEvent() method in System.Diagnostics.Tracing.EventSource
183 WriteEvent (eventId, new object[] { arg1 } ); in WriteEvent()
186 protected void WriteEvent (int eventId, string arg1) in WriteEvent() method in System.Diagnostics.Tracing.EventSource
188 WriteEvent (eventId, new object[] { arg1 } ); in WriteEvent()
193 WriteEvent (eventId, new object[] { arg1, arg2 } ); in WriteEvent()
206 protected void WriteEvent (int eventId, long arg1) in WriteEvent() method in System.Diagnostics.Tracing.EventSource
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.Tracing/tests/CustomEventSources/
H A DEventSourceTest.cs234 { WriteEvent(32, msg, n); } in EventWithEscapingMessage()
245 WriteEvent(36, text); in EventWithIncorrectNumberOfParameters()
251 { WriteEvent(39, i1, i2, str); } in EventWithIntIntString()
255 { WriteEvent(40, i1, l1, str); } in EventWithIntLongString()
260 this.WriteEvent(41, str); in EventWithString()
266 this.WriteEvent(42, i, str); in EventWithIntAndString()
272 this.WriteEvent(43, l, str); in EventWithLongAndString()
278 this.WriteEvent(44, str, i); in EventWithStringAndInt()
318 this.WriteEvent(50); in EventNamedEvent()
328 this.WriteEvent(51); in EventNamedEventStart()
[all …]
H A DInvalidEventSources.cs22 WriteEvent(1, n); in WriteInteger()
31 WriteEvent(1, n); in WriteInteger()
41 WriteEvent(-10, n); in WriteInteger()
51 WriteEvent(1, n); in WriteInteger()
67 WriteEvent(1, n); in WriteInteger()
83 WriteEvent(1, n); in WriteInteger()
99 WriteEvent(1, n); in WriteInteger()
108 WriteEvent(1, n); in WriteInteger1()
113 WriteEvent(1, n); in WriteInteger2()
122 WriteEvent(1, n); in WriteInteger()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.Tracing/tests/EvtSrcForReflection/
H A DEventSourceForReflection.cs46 public void Event0() { WriteEvent(1); } in Event0()
49 public void EventI(int arg1) { WriteEvent(2, arg1); } in EventI()
58 public void EventL(long arg1) { WriteEvent(5, arg1); } in EventL()
67 public void EventS(string arg1) { WriteEvent(8, arg1); } in EventS()
85 public void Message(string arg1) { WriteEvent(14, arg1); } in Message()
88 public void StartTrackingActivity() { WriteEvent(15); } in StartTrackingActivity()
108 { if (IsEnabled()) WriteEvent(17, arg1, arg2); } in SlowerHelper()
115 public void EventEnum1(MyColor x) { WriteEvent(19, x); } in EventEnum1()
121 public void EventFlags1(MyFlags x) { WriteEvent(21, x); } in EventFlags1()
161 { WriteEvent(26, msg, n); } in EventWithEscapingMessage()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/src/System/Net/Security/
H A DNetEventSource.Security.cs62 WriteEvent(SspiPackageNotFoundId, packageName ?? ""); in SspiPackageNotFound()
100 WriteEvent(CertIsType2Id, secureChannelHash); in CertIsType2()
112 WriteEvent(FoundCertInStoreId, store, secureChannelHash); in FoundCertInStore()
124 WriteEvent(NotFoundCertInStoreId, secureChannelHash); in NotFoundCertInStore()
136 WriteEvent(RemoteCertificateId, remoteCertificate); in RemoteCertificate()
148 WriteEvent(CertificateFromDelegateId, secureChannelHash); in CertificateFromDelegate()
160 WriteEvent(NoDelegateNoClientCertId, secureChannelHash); in NoDelegateNoClientCert()
196 WriteEvent(NoIssuersTryAllCertsId, secureChannelHash); in NoIssuersTryAllCerts()
244 WriteEvent(FindingMatchingCertsId, secureChannelHash); in FindingMatchingCerts()
256 WriteEvent(UsingCachedCredentialId, secureChannelHash); in UsingCachedCredential()
[all …]
H A DNetEventSource.Security.Windows.cs17 WriteEvent(AcquireDefaultCredentialId, packageName, intent); in AcquireDefaultCredential()
35 WriteEvent(AcquireCredentialsHandleId, packageName, (int)intent, authdata); in AcquireCredentialsHandle()
49 WriteEvent(InitializeSecurityContextId, credential, context, targetName, (int)inFlags); in InitializeSecurityContext()
61 WriteEvent(AcceptSecuritContextId, credential, context, (int)inFlags); in AcceptSecurityContext()
68 WriteEvent(OperationReturnedSomethingId, operation, errorCode); in OperationReturnedSomething()
77WriteEvent(SecurityContextInputBufferId, context, inputBufferSize, outputBufferSize, (int)errorCod… in SecurityContextInputBuffer()
86WriteEvent(SecurityContextInputBuffersId, context, inputBuffersSize, outputBufferSize, (int)errorC… in SecurityContextInputBuffers()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/diagnostics/eventing/
H A Dframeworkeventsource.cs203 WriteEvent(1, baseName, mainAssemblyName, cultureName); in ResourceManagerLookupStarted()
282 WriteEvent(13, mainAssemblyName); in ResourceManagerNeutralResourceAttributeMissing()
306 WriteEvent(17, baseName, mainAssemblyName); in ResourceManagerReleasingResources()
483 WriteEvent(30, workID); in ThreadPoolEnqueueWork()
493 WriteEvent(31, workID); in ThreadPoolDequeueWork()
507 WriteEvent(140, id, uri, success, synchronous); in GetResponseStart()
521 WriteEvent(142, id, uri, success, synchronous); in GetRequestStreamStart()
527 WriteEvent(143, id, success, synchronous); in GetRequestStreamStop()
564 WriteEvent(150, id, kind, info, multiDequeues); in ThreadTransferSend()
584 WriteEvent(151, id, kind, info); in ThreadTransferReceive()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.Tracing/ref/
H A DSystem.Diagnostics.Tracing.cs199 protected void WriteEvent(int eventId) { } in WriteEvent() method in System.Diagnostics.Tracing.EventSource
200 protected void WriteEvent(int eventId, byte[] arg1) { } in WriteEvent() method in System.Diagnostics.Tracing.EventSource
201 protected void WriteEvent(int eventId, int arg1) { } in WriteEvent() method in System.Diagnostics.Tracing.EventSource
202 protected void WriteEvent(int eventId, int arg1, int arg2) { } in WriteEvent() method in System.Diagnostics.Tracing.EventSource
204 protected void WriteEvent(int eventId, int arg1, string arg2) { } in WriteEvent() method in System.Diagnostics.Tracing.EventSource
205 protected void WriteEvent(int eventId, long arg1) { } in WriteEvent() method in System.Diagnostics.Tracing.EventSource
206 protected void WriteEvent(int eventId, long arg1, byte[] arg2) { } in WriteEvent() method in System.Diagnostics.Tracing.EventSource
207 protected void WriteEvent(int eventId, long arg1, long arg2) { } in WriteEvent() method in System.Diagnostics.Tracing.EventSource
210 protected void WriteEvent(int eventId, params object[] args) { } in WriteEvent() method in System.Diagnostics.Tracing.EventSource
211 protected void WriteEvent(int eventId, string arg1) { } in WriteEvent() method in System.Diagnostics.Tracing.EventSource
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/InternalApis/NDP_Common/inc/
H A DPinnableBufferCache.cs613 public void DebugMessage(string message) { if (IsEnabled()) WriteEvent(1, message); } in DebugMessage()
615 …public void DebugMessage1(string message, long value) { if (IsEnabled()) WriteEvent(2, message, va… in DebugMessage1()
617 …gMessage2(string message, long value1, long value2) { if (IsEnabled()) WriteEvent(3, message, valu… in DebugMessage2()
619 …ing message, long value1, long value2, long value3) { if (IsEnabled()) WriteEvent(18, message, val… in DebugMessage3()
622 public void Create(string cacheName) { if (IsEnabled()) WriteEvent(4, cacheName); } in Create()
627 …romNotGen2(string cacheName, int notGen2CountAfter) { if (IsEnabled()) WriteEvent(6, cacheName, no… in AllocateBufferFromNotGen2()
631 …AllocateBufferAged(string cacheName, int agedCount) { if (IsEnabled()) WriteEvent(8, cacheName, ag… in AllocateBufferAged()
633 …ListEmpty(string cacheName, int notGen2CountBefore) { if (IsEnabled()) WriteEvent(9, cacheName, no… in AllocateBufferFreeListEmpty()
638 …lTooYoung(string cacheName, int notGen2CountBefore) { if (IsEnabled()) WriteEvent(11, cacheName, n… in FreeBufferStillTooYoung()
647 …tring cacheName, int totalBuffs, int freeListCount) { if (IsEnabled()) WriteEvent(16, cacheName, t… in TrimFreeSizeOK()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/InternalApis/NDP_Common/inc/
H A DPinnableBufferCache.cs613 public void DebugMessage(string message) { if (IsEnabled()) WriteEvent(1, message); } in DebugMessage()
615 …public void DebugMessage1(string message, long value) { if (IsEnabled()) WriteEvent(2, message, va… in DebugMessage1()
617 …gMessage2(string message, long value1, long value2) { if (IsEnabled()) WriteEvent(3, message, valu… in DebugMessage2()
619 …ing message, long value1, long value2, long value3) { if (IsEnabled()) WriteEvent(18, message, val… in DebugMessage3()
622 public void Create(string cacheName) { if (IsEnabled()) WriteEvent(4, cacheName); } in Create()
627 …romNotGen2(string cacheName, int notGen2CountAfter) { if (IsEnabled()) WriteEvent(6, cacheName, no… in AllocateBufferFromNotGen2()
631 …AllocateBufferAged(string cacheName, int agedCount) { if (IsEnabled()) WriteEvent(8, cacheName, ag… in AllocateBufferAged()
633 …ListEmpty(string cacheName, int notGen2CountBefore) { if (IsEnabled()) WriteEvent(9, cacheName, no… in AllocateBufferFreeListEmpty()
638 …lTooYoung(string cacheName, int notGen2CountBefore) { if (IsEnabled()) WriteEvent(11, cacheName, n… in FreeBufferStillTooYoung()
647 …tring cacheName, int totalBuffs, int freeListCount) { if (IsEnabled()) WriteEvent(16, cacheName, t… in TrimFreeSizeOK()
[all …]
/dports/security/softether/v4.38-9760/src/See/
H A DWrite.c106 NdisResetEvent(&Open->WriteEvent); in NPF_Write()
161 NdisWaitEvent(&Open->WriteEvent,1000); in NPF_Write()
162 NdisResetEvent(&Open->WriteEvent); in NPF_Write()
212 NdisResetEvent(&Open->WriteEvent); in NPF_BufferedWrite()
266 NdisResetEvent(&Open->WriteEvent); in NPF_BufferedWrite()
268 NdisWaitEvent(&Open->WriteEvent, 1000); in NPF_BufferedWrite()
338 NdisResetEvent(&Open->WriteEvent); in NPF_WaitEndOfBufferedWrite()
342 NdisWaitEvent(&Open->WriteEvent, 100); in NPF_WaitEndOfBufferedWrite()
343 NdisResetEvent(&Open->WriteEvent); in NPF_WaitEndOfBufferedWrite()
388 NdisSetEvent(&Open->WriteEvent); in NPF_SendComplete()
[all …]
/dports/security/softether5/SoftEtherVPN-5.02.5180/src/See/
H A DWrite.c106 NdisResetEvent(&Open->WriteEvent); in NPF_Write()
161 NdisWaitEvent(&Open->WriteEvent,1000); in NPF_Write()
162 NdisResetEvent(&Open->WriteEvent); in NPF_Write()
212 NdisResetEvent(&Open->WriteEvent); in NPF_BufferedWrite()
266 NdisResetEvent(&Open->WriteEvent); in NPF_BufferedWrite()
268 NdisWaitEvent(&Open->WriteEvent, 1000); in NPF_BufferedWrite()
338 NdisResetEvent(&Open->WriteEvent); in NPF_WaitEndOfBufferedWrite()
342 NdisWaitEvent(&Open->WriteEvent, 100); in NPF_WaitEndOfBufferedWrite()
343 NdisResetEvent(&Open->WriteEvent); in NPF_WaitEndOfBufferedWrite()
388 NdisSetEvent(&Open->WriteEvent); in NPF_SendComplete()
[all …]
/dports/security/softether-devel/v4.36-9754/src/See/
H A DWrite.c106 NdisResetEvent(&Open->WriteEvent); in NPF_Write()
161 NdisWaitEvent(&Open->WriteEvent,1000); in NPF_Write()
162 NdisResetEvent(&Open->WriteEvent); in NPF_Write()
212 NdisResetEvent(&Open->WriteEvent); in NPF_BufferedWrite()
266 NdisResetEvent(&Open->WriteEvent); in NPF_BufferedWrite()
268 NdisWaitEvent(&Open->WriteEvent, 1000); in NPF_BufferedWrite()
338 NdisResetEvent(&Open->WriteEvent); in NPF_WaitEndOfBufferedWrite()
342 NdisWaitEvent(&Open->WriteEvent, 100); in NPF_WaitEndOfBufferedWrite()
343 NdisResetEvent(&Open->WriteEvent); in NPF_WaitEndOfBufferedWrite()
388 NdisSetEvent(&Open->WriteEvent); in NPF_SendComplete()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Transactions.Local/src/System/Transactions/
H A DTransactionsEtwProvider.cs469 WriteEvent(ENLISTMENT_DONE_EVENTID, enlistmentIdentifier); in EnlistmentDone()
545 WriteEvent(ENLISTMENT_ABORTED_EVENTID, enlistmentIdentifier); in EnlistmentAborted()
770 WriteEvent(EXCEPTION_CONSUMED_BASE_EVENTID, exceptionStr); in ExceptionConsumedBase()
776 WriteEvent(EXCEPTION_CONSUMED_LTM_EVENTID, exceptionStr); in ExceptionConsumedLtm()
796 WriteEvent(TRANSACTIONMANAGER_REENLIST_EVENTID, rmID); in TransactionManagerReenlistTrace()
835 WriteEvent(CONFIGURED_DEFAULT_TIMEOUT_ADJUSTED_EVENTID); in ConfiguredDefaultTimeoutAdjustedTrace()
979 WriteEvent(TRANSACTIONSCOPE_INTERNAL_ERROR_EVENTID, error); in TransactionScopeInternalErrorTrace()
1025 WriteEvent(TRANSACTION_TIMEOUT_EVENTID, transactionID); in TransactionTimeout()
1073 WriteEvent(TRANSACTION_COMMITTED_EVENTID, transactionID); in TransactionCommitted()
1096 WriteEvent(TRANSACTION_INDOUBT_EVENTID, transactionID); in TransactionInDoubt()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/
H A DEtwProvider.cs87 … status = WriteEvent(ref eventDescriptor, eventTraceActivity, argumentCount, (IntPtr)(eventData)); in WriteEvent()
143 … status = WriteEvent(ref eventDescriptor, eventTraceActivity, argumentCount, (IntPtr)(eventData)); in WriteEvent()
175 … status = WriteEvent(ref eventDescriptor, eventTraceActivity, argumentCount, (IntPtr)(eventData)); in WriteEvent()
211 … status = WriteEvent(ref eventDescriptor, eventTraceActivity, argumentCount, (IntPtr)(eventData)); in WriteEvent()
252 … status = WriteEvent(ref eventDescriptor, eventTraceActivity, argumentCount, (IntPtr)(eventData)); in WriteEvent()
297 … status = WriteEvent(ref eventDescriptor, eventTraceActivity, argumentCount, (IntPtr)(eventData)); in WriteEvent()
347 … status = WriteEvent(ref eventDescriptor, eventTraceActivity, argumentCount, (IntPtr)(eventData)); in WriteEvent()
401 … status = WriteEvent(ref eventDescriptor, eventTraceActivity, argumentCount, (IntPtr)(eventData)); in WriteEvent()
459 … status = WriteEvent(ref eventDescriptor, eventTraceActivity, argumentCount, (IntPtr)(eventData)); in WriteEvent()
521 … status = WriteEvent(ref eventDescriptor, eventTraceActivity, argumentCount, (IntPtr)(eventData)); in WriteEvent()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/Net/Security/
H A DNetEventSource.Security.Windows.cs17 WriteEvent(AcquireDefaultCredentialId, packageName, intent); in AcquireDefaultCredential()
35 WriteEvent(AcquireCredentialsHandleId, packageName, (int)intent, authdata); in AcquireCredentialsHandle()
49 WriteEvent(InitializeSecurityContextId, credential, context, targetName, (int)inFlags); in InitializeSecurityContext()
61 WriteEvent(AcceptSecuritContextId, credential, context, (int)inFlags); in AcceptSecurityContext()
68 WriteEvent(OperationReturnedSomethingId, operation, errorCode); in OperationReturnedSomething()
77WriteEvent(SecurityContextInputBufferId, context, inputBufferSize, outputBufferSize, (int)errorCod… in SecurityContextInputBuffer()
86WriteEvent(SecurityContextInputBuffersId, context, inputBuffersSize, outputBufferSize, (int)errorC… in SecurityContextInputBuffers()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections.Concurrent/src/System/Collections/Concurrent/
H A DCDSCollectionETWBCLProvider.cs62 WriteEvent(CONCURRENTSTACK_FASTPUSHFAILED_ID, spinCount); in ConcurrentStack_FastPushFailed()
71 WriteEvent(CONCURRENTSTACK_FASTPOPFAILED_ID, spinCount); in ConcurrentStack_FastPopFailed()
85 WriteEvent(CONCURRENTDICTIONARY_ACQUIRINGALLLOCKS_ID, numOfBuckets); in ConcurrentDictionary_AcquiringAllLocks()
103 WriteEvent(CONCURRENTBAG_TRYTAKESTEALS_ID); in ConcurrentBag_TryTakeSteals()
112 WriteEvent(CONCURRENTBAG_TRYPEEKSTEALS_ID); in ConcurrentBag_TryPeekSteals()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/collections/Concurrent/
H A DCDSCollectionETWBCLProvider.cs69 WriteEvent(CONCURRENTSTACK_FASTPUSHFAILED_ID, spinCount); in ConcurrentStack_FastPushFailed()
78 WriteEvent(CONCURRENTSTACK_FASTPOPFAILED_ID, spinCount); in ConcurrentStack_FastPopFailed()
93 WriteEvent(CONCURRENTDICTIONARY_ACQUIRINGALLLOCKS_ID, numOfBuckets); in ConcurrentDictionary_AcquiringAllLocks()
113 WriteEvent(CONCURRENTBAG_TRYTAKESTEALS_ID); in ConcurrentBag_TryTakeSteals()
122 WriteEvent(CONCURRENTBAG_TRYPEEKSTEALS_ID); in ConcurrentBag_TryPeekSteals()
/dports/www/proxygen/proxygen-2021.12.27.00/proxygen/lib/test/
H A DTestAsyncTransport.h22 class WriteEvent {
24 static std::shared_ptr<WriteEvent> newEvent(const struct iovec* vec,
38 static void destroyEvent(WriteEvent* event);
40 WriteEvent(proxygen::TimePoint time, size_t count);
41 ~WriteEvent();
102 std::deque<std::shared_ptr<WriteEvent>>* getWriteEvents() { in getWriteEvents()
176 std::deque<std::shared_ptr<WriteEvent>> writeEvents_;
177 std::deque<std::pair<std::shared_ptr<WriteEvent>,
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-lexv2-runtime/include/aws/lexv2-runtime/model/
H A DStartConversationRequestEventStream.h40 WriteEvent(msg); in WriteConfigurationEvent()
50 WriteEvent(msg); in WriteAudioInputEvent()
60 WriteEvent(msg); in WriteDTMFInputEvent()
70 WriteEvent(msg); in WriteTextInputEvent()
80 WriteEvent(msg); in WritePlaybackCompletionEvent()
90 WriteEvent(msg); in WriteDisconnectionEvent()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Http/src/System/Net/Http/
H A DNetEventSource.Http.cs31 WriteEvent(UriBaseAddressId, uriBaseAddress, objName, objHash); in UriBaseAddress()
44 WriteEvent(ContentNullId, objName, objHash); in ContentNull()
57WriteEvent(ClientSendCompletedId, responseString, httpRequestMessageHash, httpResponseMessageHash,… in ClientSendCompleted()
61 WriteEvent(HeadersInvalidValueId, name, rawValue); in HeadersInvalidValue()
65 WriteEvent(HandlerMessageId, handlerId, workerId, requestId, memberName, message); in HandlerMessage()
68 …private unsafe void WriteEvent(int eventId, int arg1, int arg2, int arg3, string arg4, string arg5) in WriteEvent() method in System.Net.NetEventSource
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/threading/Tasks/
H A DTPLETWProvider.cs374WriteEvent(PARALLELFORK_ID, OriginatingTaskSchedulerID, OriginatingTaskID, ForkJoinContextID); in ParallelFork()
394WriteEvent(PARALLELJOIN_ID, OriginatingTaskSchedulerID, OriginatingTaskID, ForkJoinContextID); in ParallelJoin()
467 WriteEvent(TASKSTARTED_ID, OriginatingTaskSchedulerID, OriginatingTaskID, TaskID); in TaskStarted()
565 WriteEvent(TASKWAITEND_ID, OriginatingTaskSchedulerID, OriginatingTaskID, TaskID); in TaskWaitEnd()
580 WriteEvent(TASKWAITCONTINUATIONCOMPLETE_ID, TaskID); in TaskWaitContinuationComplete()
595 WriteEvent(TASKWAITCONTINUATIONSTARTED_ID, TaskID); in TaskWaitContinuationStarted()
710 WriteEvent(20, TaskID, Object); in RunningContinuation()
720 WriteEvent(21, TaskID, Index, Object); in RunningContinuationList()
724 public void DebugMessage(string Message) { WriteEvent(22, Message); } in DebugMessage()
736 WriteEvent(25, NewId); in SetActivityId()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Diagnostics/
H A DTraceSourceTraceWriter.cs34 WriteEvent(TraceEventType.Information, traceId, format, arguments); in WriteInformation()
39 WriteEvent(TraceEventType.Warning, traceId, format, arguments); in WriteWarning()
44 WriteEvent(TraceEventType.Error, traceId, format, arguments); in WriteError()
47 …private static void WriteEvent(TraceEventType eventType, CompositionTraceId traceId, string format… in WriteEvent() method in System.ComponentModel.Composition.Diagnostics.TraceSourceTraceWriter
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Composition.Convention/src/Microsoft/Composition/Diagnostics/
H A DTraceSourceTraceWriter.cs34 WriteEvent(TraceEventType.Information, traceId, format, arguments); in WriteInformation()
39 WriteEvent(TraceEventType.Warning, traceId, format, arguments); in WriteWarning()
44 WriteEvent(TraceEventType.Error, traceId, format, arguments); in WriteError()
47 …private static void WriteEvent(TraceEventType eventType, CompositionTraceId traceId, string format… in WriteEvent() method in Microsoft.Composition.Diagnostics.TraceSourceTraceWriter

12345678910>>...23