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

12345678

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DLog.cpp1 //===-- Log.cpp -------------------------------------------------*- C++ -*-===//
26 #include "lldb/Core/Log.h"
37 Log::Log () : function in class:Log
44 Log::Log (const StreamSP &stream_sp) : function in class:Log
51 Log::~Log ()
56 Log::GetOptions()
62 Log
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemoteLog.h18 #include "lldb/Core/Log.h"
24 #define GDBR_LOG_MEMORY (1u << 4) // Log memory reads/writes calls
25 #define GDBR_LOG_MEMORY_DATA_SHORT (1u << 5) // Log short memory reads/writes bytes
26 #define GDBR_LOG_MEMORY_DATA_LONG (1u << 6) // Log all memory reads/writes bytes
38 static lldb_private::Log *
41 static lldb_private::Log *
47 static lldb_private::Log *
H A DProcessGDBRemoteLog.cpp26 static Log * g_log = NULL;
27 static Log *
36 Log *
39 Log *log(GetLog ());
49 Log *
52 Log *log(GetLog ());
61 Log *log (GetLog ());
106 Log *
121 g_log = new Log(log_stream_sp);
188 Log *lo
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIXLog.cpp27 static Log * g_log = NULL;
28 static Log *
37 Log *
40 Log *log(GetLog ());
75 Log *log (GetLog ());
105 Log *
120 g_log = new Log(log_stream_sp);
182 Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (mask));
H A DProcessPOSIXLog.h18 #include "lldb/Core/Log.h"
24 #define POSIX_LOG_MEMORY (1u << 4) // Log memory reads/writes calls
25 #define POSIX_LOG_MEMORY_DATA_SHORT (1u << 5) // Log short memory reads/writes bytes
26 #define POSIX_LOG_MEMORY_DATA_LONG (1u << 6) // Log all memory reads/writes bytes
58 static lldb_private::Log *
64 static lldb_private::Log *
/freebsd-10.0-release/contrib/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);
86 void logd(const DiffLogBuilder &Log);
H A DDiffConsumer.cpp160 void DiffConsumer::logf(const LogBuilder &Log) { argument
166 StringRef format = Log.getFormat();
179 case 'l': printValue(Log.getArgument(arg++), true); break;
180 case 'r': printValue(Log.getArgument(arg++), false); break;
190 void DiffConsumer::logd(const DiffLogBuilder &Log) { argument
193 for (unsigned I = 0, E = Log.getNumLines(); I != E; ++I) {
195 switch (Log.getLineKind(I)) {
198 Log.getLeft(I)->dump();
199 //printValue(Log.getLeft(I), true);
203 Log
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DLog.h1 //===-- Log.h ---------------------------------------------------*- C++ -*-===//
56 class Log class in namespace:lldb_private
64 typedef Log * (*EnableCallback) (lldb::StreamSP &log_stream_sp,
82 const Log::Callbacks &log_callbacks);
89 Log::Callbacks &log_callbacks);
120 Log ();
122 Log (const lldb::StreamSP &stream_sp);
124 ~Log ();
198 DISALLOW_COPY_AND_ASSIGN (Log);
227 std::unique_ptr<Log> m_log_a
[all...]
H A DError.h25 class Log;
160 /// Log an error to Log().
162 /// Log the error given a formatted string \a format. If the this
178 PutToLog (Log *log, const char *format, ...) __attribute__ ((format (printf, 3, 4)));
181 /// Log an error to Log() if the error value is an error.
183 /// Log the error given a formatted string \a format only if the
199 LogIfError (Log *log, const char *format, ...) __attribute__ ((format (printf, 3, 4)));
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-private-log.h20 // Log Bits specific to logging in lldb
67 Log *
70 Log *
82 Log *
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp55 Log::Callbacks log_callbacks = {
61 Log::RegisterLogChannel (ProcessFreeBSD::GetPluginNameStatic(), log_callbacks);
106 Log *
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DLogChannelDWARF.h18 #include "lldb/Core/Log.h"
76 static lldb_private::Log *
79 static lldb_private::Log *
82 static lldb_private::Log *
H A DDWARFDebugLine.h92 void Dump (lldb_private::Log *log);
116 void Dump(lldb_private::Log *log) const;
118 static void Dump(lldb_private::Log *log, const Row::collection& state_coll);
154 void Dump(lldb_private::Log *log) const;
175 lldb_private::Log *log,
189 lldb_private::Log *log;
197 static bool DumpOpcodes(lldb_private::Log *log, SymbolFileDWARF* dwarf2Data, dw_offset_t line_offset = DW_INVALID_OFFSET, uint32_t dump_flags = 0); // If line_offset is invalid, dump everything
198 static bool DumpLineTableRows(lldb_private::Log *log, SymbolFileDWARF* dwarf2Data, dw_offset_t line_offset = DW_INVALID_OFFSET); // If line_offset is invalid, dump everything
202 static dw_offset_t DumpStatementTable(lldb_private::Log *log, const lldb_private::DataExtractor& debug_line_data, const dw_offset_t line_offset);
203 static dw_offset_t DumpStatementOpcodes(lldb_private::Log *lo
[all...]
H A DDWARFDebugPubnames.h27 void Dump(lldb_private::Log *s) const;
H A DLogChannelDWARF.cpp136 m_log_ap.reset(new Log (log_stream_sp));
187 Log *
196 Log *
207 Log *
223 Log *log = g_log_channel->m_log_ap.get();
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/
H A Dlldb-log.cpp17 #include "lldb/Core/Log.h"
31 static Log * g_log = NULL;
32 static Log *
43 Log *log(GetLog ());
56 Log *
59 Log *log(GetLog ());
72 Log *log(GetLogIfAllCategoriesSet (mask));
85 Log *log(GetLogIfAnyCategoriesSet (mask));
95 Log *
98 Log *lo
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBCommunication.cpp14 #include "lldb/Core/Log.h"
31 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
82 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
110 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
126 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
140 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
174 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
185 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
201 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
221 Log *lo
[all...]
H A DSBData.cpp16 #include "lldb/Core/Log.h"
89 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
102 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
119 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
132 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
145 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
156 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
178 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
200 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
222 Log *lo
[all...]
H A DSBProcess.cpp19 #include "lldb/Core/Log.h"
146 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
225 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
239 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
261 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
284 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
305 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
326 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
357 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
380 Log *lo
[all...]
H A DSBFileSpec.cpp15 #include "lldb/Core/Log.h"
70 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
97 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
113 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
127 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
H A DSBBroadcaster.cpp11 #include "lldb/Core/Log.h"
32 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API | LIBLLDB_LOG_VERBOSE));
43 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API | LIBLLDB_LOG_VERBOSE));
75 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
92 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
110 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
H A DSBValue.cpp23 #include "lldb/Core/Log.h"
111 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
322 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
337 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
360 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
388 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
398 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
427 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
448 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
469 Log *lo
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DASTDumper.h35 void ToLog(Log *log, const char *prefix);
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadPlanTracer.h95 virtual void Log();
114 virtual void Log();
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlan.cpp19 #include "lldb/Core/Log.h"
98 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
154 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
247 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
266 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
285 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
304 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
325 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
345 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));

Completed in 299 milliseconds

12345678