3 writes to channelTab
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ManifestBuilder.cs (3)
147channelTab ??= new Dictionary<int, ChannelInfo>(4); 314channelTab ??= new Dictionary<int, ChannelInfo>(4); 640channelTab ??= new Dictionary<int, ChannelInfo>(4);
11 references to channelTab
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ManifestBuilder.cs (11)
148channelTab[value] = new ChannelInfo { Name = name, Keywords = kwd, Attribs = channelAttribute }; 168if (this.channelTab == null) 176foreach (int item in this.channelTab.Keys) 185foreach (KeyValuePair<int, ChannelInfo> item in this.channelTab) 316if (channelTab.Count == MaxCountChannels) 319if (!channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 366if (channelTab != null) 370foreach (KeyValuePair<int, ChannelInfo> p in channelTab) { sortedChannels.Add(p); } 633if (channelTab == null || !channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 647if (!channelTab.TryGetValue((int)channel, out info))