Home
last modified time | relevance | path

Searched refs:g_channel_map (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp44 llvm::ManagedStatic<Log::ChannelMap> Log::g_channel_map; member in Log
212 auto iter = g_channel_map->try_emplace(name, channel); in Register()
218 auto iter = g_channel_map->find(name); in Unregister()
219 assert(iter != g_channel_map->end()); in Unregister()
221 g_channel_map->erase(iter); in Unregister()
228 auto iter = g_channel_map->find(channel); in EnableLogChannel()
229 if (iter == g_channel_map->end()) { in EnableLogChannel()
243 auto iter = g_channel_map->find(channel); in DisableLogChannel()
244 if (iter == g_channel_map->end()) { in DisableLogChannel()
258 auto iter = g_channel_map->find(channel); in DumpLogChannel()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h308 static llvm::ManagedStatic<ChannelMap> g_channel_map; variable