Searched refs:Log (Results 1 - 25 of 246) sorted by relevance

12345678910

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DLogChannelDWARF.cpp13 static constexpr Log::Category g_categories[] = {
27 Log::Channel LogChannelDWARF::g_channel(g_categories, DWARF_LOG_DEFAULT);
30 Log::Register("dwarf", g_channel);
33 void LogChannelDWARF::Terminate() { Log::Unregister("dwarf"); }
H A DLogChannelDWARF.h12 #include "lldb/Utility/Log.h"
24 static Log::Channel g_channel;
30 static Log *GetLogIfAll(uint32_t mask) { return g_channel.GetLogIfAll(mask); }
31 static Log *GetLogIfAny(uint32_t mask) { return g_channel.GetLogIfAny(mask); }
H A DDWARFDebugAranges.h37 void Dump(lldb_private::Log *log) const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIXLog.cpp16 static constexpr Log::Category g_categories[] = {
26 Log::Channel ProcessPOSIXLog::g_channel(g_categories, POSIX_LOG_DEFAULT);
30 llvm::call_once(g_once_flag, []() { Log::Register("posix", g_channel); });
H A DProcessPOSIXLog.h14 #include "lldb/Utility/Log.h"
18 #define POSIX_LOG_MEMORY (1u << 4) // Log memory reads/writes calls
28 static Log::Channel g_channel;
33 static Log *GetLogIfAllCategoriesSet(uint32_t mask) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemoteLog.cpp17 static constexpr Log::Category g_categories[] = {
36 Log::Channel ProcessGDBRemoteLog::g_channel(g_categories, GDBR_LOG_DEFAULT);
41 Log::Register("gdb-remote", g_channel);
H A DProcessGDBRemoteLog.h13 #include "lldb/Utility/Log.h"
18 #define GDBR_LOG_MEMORY (1u << 4) // Log memory reads/writes calls
20 (1u << 5) // Log short memory reads/writes bytes
21 #define GDBR_LOG_MEMORY_DATA_LONG (1u << 6) // Log all memory reads/writes bytes
34 static Log::Channel g_channel;
39 static Log *GetLogIfAllCategoriesSet(uint32_t mask) { return g_channel.GetLogIfAll(mask); }
40 static Log *GetLogIfAnyCategoryIsSet(uint32_t mask) { return g_channel.GetLogIfAny(mask); }
H A DGDBRemoteClientBase.cpp39 Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
160 if (Log *log =
179 if (Log *log =
213 Log *log = ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS);
227 Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
312 Log *log = ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS);
348 Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DLogging.cpp10 #include "lldb/Utility/Log.h"
18 static constexpr Log::Category g_categories[] = {
52 static Log::Channel g_log_channel(g_categories, LIBLLDB_LOG_DEFAULT);
55 Log::Register("lldb", g_log_channel);
58 Log *lldb_private::GetLogIfAllCategoriesSet(uint32_t mask) {
62 Log *lldb_private::GetLogIfAnyCategoriesSet(uint32_t mask) {
H A DLog.cpp1 //===-- Log.cpp -------------------------------------------------*- C++ -*-===//
9 #include "lldb/Utility/Log.h"
38 llvm::ManagedStatic<Log::ChannelMap> Log::g_channel_map;
40 void Log::ForEachCategory(
41 const Log::ChannelMap::value_type &entry,
49 void Log::ListCategories(llvm::raw_ostream &stream,
58 uint32_t Log::GetFlags(llvm::raw_ostream &stream, const ChannelMap::value_type &entry,
73 [&](const Log::Category &c) { return c.name.equals_lower(category); });
87 void Log
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h1 //===-- Log.h ---------------------------------------------------*- C++ -*-===//
49 class Log final {
61 std::atomic<Log *> log_ptr;
62 friend class Log;
68 constexpr Channel(llvm::ArrayRef<Log::Category> categories,
74 // after (or concurrently with) this function returning a non-null Log
75 // pointer, it is still safe to attempt to write to the Log object -- the
77 Log *GetLogIfAll(uint32_t mask) {
78 Log *log = log_ptr.load(std::memory_order_relaxed);
85 // after (or concurrently with) this function returning a non-null Log
133 Log(Channel &channel) : m_channel(channel) {} function in class:lldb_private::final
[all...]
H A DLogging.h14 // Log Bits specific to logging in lldb
55 class Log;
57 Log *GetLogIfAllCategoriesSet(uint32_t mask);
59 Log *GetLogIfAnyCategoriesSet(uint32_t mask);
H A DStringList.h19 class Log;
110 // Dump the StringList to the given lldb_private::Log, `log`, one item per
113 virtual void LogDump(Log *log, const char *name = nullptr);
118 static void LogDump(Log *log, T s_iterable, const char *name = nullptr) {
/freebsd-11-stable/cddl/usr.sbin/zfsd/
H A Dzfsd_exception.h103 virtual void Log() const;
H A Dzfsd_event.cc115 /* Log the event since it is of interest. */
116 Log(LOG_INFO);
218 exp.Log();
247 exp.Log();
305 Log(LOG_INFO);
318 Log(LOG_INFO);
334 Log(LOG_INFO);
346 Log(LOG_INFO);
360 Log(LOG_INFO);
406 Log(LOG_INF
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-diff/
H A DDiffConsumer.h46 virtual void logf(const LogBuilder &Log) = 0;
49 virtual void logd(const DiffLogBuilder &Log) = 0;
85 void logf(const LogBuilder &Log) override;
86 void logd(const DiffLogBuilder &Log) override;
H A DDiffConsumer.cpp159 void DiffConsumer::logf(const LogBuilder &Log) { argument
165 StringRef format = Log.getFormat();
178 case 'l': printValue(Log.getArgument(arg++), true); break;
179 case 'r': printValue(Log.getArgument(arg++), false); break;
189 void DiffConsumer::logd(const DiffLogBuilder &Log) { argument
192 for (unsigned I = 0, E = Log.getNumLines(); I != E; ++I) {
194 switch (Log.getLineKind(I)) {
197 Log.getLeft(I)->print(dbgs()); dbgs() << '\n';
198 //printValue(Log.getLeft(I), true);
202 Log
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanPython.cpp20 #include "lldb/Utility/Log.h"
76 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
98 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
120 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
142 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
157 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
189 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
H A DThreadPlan.cpp15 #include "lldb/Utility/Log.h"
65 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
103 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
179 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
196 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
213 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
230 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
249 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
267 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
H A DThreadPlanStepThrough.cpp16 #include "lldb/Utility/Log.h"
65 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
100 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
233 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
258 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanTracer.h66 virtual void Log();
84 void Log() override;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.cpp18 #include "lldb/Utility/Log.h"
34 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
41 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
H A DAuxVector.h13 #include "lldb/Utility/Log.h"
64 void DumpToLog(lldb_private::Log *log) const;
/freebsd-11-stable/lib/libdevdctl/
H A Dexception.h73 virtual void Log() const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DHostInfoBase.cpp16 #include "lldb/Utility/Log.h"
122 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
132 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
142 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
152 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
163 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
173 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
185 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
214 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);

Completed in 221 milliseconds

12345678910