Lines Matching refs:KDPLog
14 {{"async"}, {"log asynchronous activity"}, KDPLog::Async},
15 {{"break"}, {"log breakpoints"}, KDPLog::Breakpoints},
16 {{"comm"}, {"log communication activity"}, KDPLog::Comm},
19 KDPLog::MemoryDataLong},
23 KDPLog::MemoryDataShort},
24 {{"memory"}, {"log memory reads and writes"}, KDPLog::Memory},
25 {{"packets"}, {"log gdb remote packets"}, KDPLog::Packets},
26 {{"process"}, {"log process events and activities"}, KDPLog::Process},
27 {{"step"}, {"log step related activities"}, KDPLog::Step},
28 {{"thread"}, {"log thread events and activities"}, KDPLog::Thread},
29 {{"watch"}, {"log watchpoint related activities"}, KDPLog::Watchpoints},
32 static Log::Channel g_channel(g_categories, KDPLog::Packets);
34 template <> Log::Channel &lldb_private::LogChannelFor<KDPLog>() { in LogChannelFor()