Lines Matching refs:iter
199 auto iter = g_channel_map->try_emplace(name, channel); in Register() local
200 assert(iter.second == true); in Register()
201 (void)iter; in Register()
205 auto iter = g_channel_map->find(name); in Unregister() local
206 assert(iter != g_channel_map->end()); in Unregister()
207 iter->second.Disable(std::numeric_limits<MaskType>::max()); in Unregister()
208 g_channel_map->erase(iter); in Unregister()
215 auto iter = g_channel_map->find(channel); in EnableLogChannel() local
216 if (iter == g_channel_map->end()) { in EnableLogChannel()
221 ? iter->second.m_channel.default_flags in EnableLogChannel()
222 : GetFlags(error_stream, *iter, categories); in EnableLogChannel()
223 iter->second.Enable(log_handler_sp, log_options, flags); in EnableLogChannel()
230 auto iter = g_channel_map->find(channel); in DisableLogChannel() local
231 if (iter == g_channel_map->end()) { in DisableLogChannel()
237 : GetFlags(error_stream, *iter, categories); in DisableLogChannel()
238 iter->second.Disable(flags); in DisableLogChannel()
245 auto iter = g_channel_map->find(channel); in DumpLogChannel() local
246 if (iter == g_channel_map->end()) { in DumpLogChannel()
250 if (!iter->second.Dump(output_stream)) { in DumpLogChannel()