92 references to EventKeywords
mscorlib (88)
system\Collections\Concurrent\CDSCollectionETWBCLProvider.cs (2)
45
private const
EventKeywords
ALL_KEYWORDS = (
EventKeywords
)(-1);
system\diagnostics\eventing\eventprovider.cs (4)
361
protected
EventKeywords
MatchAnyKeyword { get { return (
EventKeywords
)m_anyKeywordMask; } set { m_anyKeywordMask = unchecked((long)value); } }
362
protected
EventKeywords
MatchAllKeyword { get { return (
EventKeywords
)m_allKeywordMask; } set { m_allKeywordMask = unchecked((long)value); } }
system\diagnostics\eventing\eventsource.cs (31)
275
public bool IsEnabled(EventLevel level,
EventKeywords
keywords)
291
public bool IsEnabled(EventLevel level,
EventKeywords
keywords, EventChannel channel)
507
eventSource.SendCommand(null, 0, 0, command, true, EventLevel.LogAlways,
EventKeywords
.None, commandArguments);
1273
Keywords = (
EventKeywords
)unchecked((long)etwSessions.ToEventKeywords() | origKwd),
1998
Keywords = (
EventKeywords
)unchecked((long)etwSessions.ToEventKeywords() | origKwd),
2229
Keywords = (
EventKeywords
)unchecked(keywords),
2371
private bool IsEnabledByDefault(int eventNum, bool enable, EventLevel currentLevel,
EventKeywords
currentMatchAnyKeyword)
2377
EventKeywords
eventKeywords = unchecked((
EventKeywords
)((ulong)m_eventData[eventNum].Descriptor.Keywords & (~(SessionMask.All.ToEventKeywords()))));
2388
private bool IsEnabledCommon(bool enabled, EventLevel currentLevel,
EventKeywords
currentMatchAnyKeyword,
2389
EventLevel eventLevel,
EventKeywords
eventKeywords, EventChannel eventChannel)
2405
EventKeywords
channel_keywords = unchecked((
EventKeywords
)(m_channelData[(int)eventChannel] | (ulong)eventKeywords));
2577
EventLevel level,
EventKeywords
matchAnyKeyword,
2962
ActivityFilter.UpdateKwdTriggers(activityFilter, m_guid, this, unchecked((
EventKeywords
)gKeywords));
3506
eventAttribute.Keywords |= (
EventKeywords
)manifest.GetChannelKeyword(eventAttribute.Channel);
3614
else if (!reflectionOnly && (staticFieldType == typeof(
EventKeywords
)) || AttributeTypeNamesMatch(staticFieldType, typeof(
EventKeywords
)))
4057
internal
EventKeywords
m_matchAnyKeyword; // the logical OR of all levels enabled by any output dispatcher (zero is a special case) meaning 'all keywords'
4148
/// (<see cref="EventLevel"/>) and bitfields (<see cref="
EventKeywords
"/>) to further restrict the set of
4290
EnableEvents(eventSource, level,
EventKeywords
.None);
4303
public void EnableEvents(EventSource eventSource, EventLevel level,
EventKeywords
matchAnyKeyword)
4319
public void EnableEvents(EventSource eventSource, EventLevel level,
EventKeywords
matchAnyKeyword, IDictionary<string, string> arguments)
4342
eventSource.SendCommand(this, 0, 0, EventCommand.Update, false, EventLevel.LogAlways,
EventKeywords
.None, null);
4709
EventListener listener, int perEventSourceSessionId, int etwSessionId, bool enable, EventLevel level,
EventKeywords
matchAnyKeyword)
4731
internal
EventKeywords
matchAnyKeyword;
4858
public
EventKeywords
Keywords
4865
return (
EventKeywords
)m_eventSource.m_eventData[EventId].Descriptor.Keywords;
4981
internal
EventKeywords
m_keywords;
5045
public
EventKeywords
Keywords { get; set; }
5539
public static void UpdateKwdTriggers(ActivityFilter activityFilter, Guid sourceGuid, EventSource source,
EventKeywords
sessKeywords)
system\diagnostics\eventing\frameworkeventsource.cs (10)
43
public const
EventKeywords
Loader = (
EventKeywords
)0x0001; // This is bit 0
44
public const
EventKeywords
ThreadPool = (
EventKeywords
)0x0002;
45
public const
EventKeywords
NetClient = (
EventKeywords
)0x0004;
50
public const
EventKeywords
DynamicTypeUsage = (
EventKeywords
)0x0008;
51
public const
EventKeywords
ThreadTransfer = (
EventKeywords
)0x0010;
System\Diagnostics\Eventing\TraceLogging\EventDataAttribute.cs (1)
126
internal
EventKeywords
Keywords
System\Diagnostics\Eventing\TraceLogging\EventSourceOptions.cs (2)
16
internal
EventKeywords
keywords;
77
public
EventKeywords
Keywords
System\Diagnostics\Eventing\TraceLogging\TraceLoggingEventSource.cs (4)
360
EventKeywords
keywords = (options.valuesSet & EventSourceOptions.keywordsSet) != 0
418
EventKeywords
keywords = (options.valuesSet & EventSourceOptions.keywordsSet) != 0
695
eventCallbackArgs.m_keywords = (
EventKeywords
) eventDescriptor.Keywords;
836
EventKeywords
keywords = (options.valuesSet & EventSourceOptions.keywordsSet) != 0
System\Diagnostics\Eventing\TraceLogging\TraceLoggingEventTypes.cs (3)
28
internal readonly
EventKeywords
keywords;
183
internal
EventKeywords
Keywords
185
get { return (
EventKeywords
)this.keywords; }
System\Diagnostics\Eventing\TraceLogging\TraceLoggingTypeInfo.cs (3)
23
private readonly
EventKeywords
keywords;
47
EventKeywords
keywords,
105
public
EventKeywords
Keywords
System\Diagnostics\Eventing\TraceLogging\TraceLoggingTypeInfo_T.cs (1)
62
EventKeywords
keywords,
System\Diagnostics\Eventing\TraceLogging\TypeAnalysis.cs (1)
19
internal readonly
EventKeywords
keywords;
system\threading\CDSsyncETWBCLProvider.cs (2)
47
private const
EventKeywords
ALL_KEYWORDS = (
EventKeywords
)(-1);
system\threading\Tasks\TPLETWProvider.cs (24)
117
public const
EventKeywords
TaskTransfer = (
EventKeywords
) 1;
121
public const
EventKeywords
Tasks = (
EventKeywords
) 2;
125
public const
EventKeywords
Parallel = (
EventKeywords
) 4;
130
public const
EventKeywords
AsyncCausalityOperation = (
EventKeywords
) 8;
131
public const
EventKeywords
AsyncCausalityRelation = (
EventKeywords
) 0x10;
132
public const
EventKeywords
AsyncCausalitySynchronousWork = (
EventKeywords
) 0x20;
137
public const
EventKeywords
TaskStops = (
EventKeywords
) 0x40;
143
public const
EventKeywords
TasksFlowActivityIds = (
EventKeywords
) 0x80;
150
public const
EventKeywords
TasksSetActivityIds = (
EventKeywords
) 0x10000;
155
public const
EventKeywords
Debug = (
EventKeywords
) 0x20000;
159
public const
EventKeywords
DebugActivityId = (
EventKeywords
) 0x40000;
163
private const
EventKeywords
ALL_KEYWORDS = (
EventKeywords
)(-1);
System.Core (2)
System\Linq\Parallel\Utils\PLINQETWProvider.cs (2)
56
private const
EventKeywords
ALL_KEYWORDS = (
EventKeywords
)(-1);
System.Data (2)
fx\src\data\System\Data\Common\SqlEventSource.cs (2)
41
public const
EventKeywords
SqlClient = (
EventKeywords
)0x0001; // This is bit 0