Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Utility/
DLog.cpp38 llvm::ManagedStatic<Log::ChannelMap> Log::g_channel_map; member in Log
189 auto iter = g_channel_map->try_emplace(name, channel); in Register()
195 auto iter = g_channel_map->find(name); in Unregister()
196 assert(iter != g_channel_map->end()); in Unregister()
198 g_channel_map->erase(iter); in Unregister()
205 auto iter = g_channel_map->find(channel); in EnableLogChannel()
206 if (iter == g_channel_map->end()) { in EnableLogChannel()
220 auto iter = g_channel_map->find(channel); in DisableLogChannel()
221 if (iter == g_channel_map->end()) { in DisableLogChannel()
234 auto ch = g_channel_map->find(channel); in ListChannelCategories()
[all …]
/external/llvm-project/lldb/include/lldb/Utility/
DLog.h203 static llvm::ManagedStatic<ChannelMap> g_channel_map; variable