reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Core/Module.h
   43 class Log;
tools/lldb/include/lldb/Core/ModuleList.h
   36 class Log;
tools/lldb/include/lldb/Core/ValueObject.h
   48 class Log;
tools/lldb/include/lldb/Utility/DataExtractor.h
   24 class Log;
tools/lldb/include/lldb/Utility/Logging.h
   55 class Log;
tools/lldb/include/lldb/Utility/StringList.h
   19 class Log;
tools/lldb/include/lldb/lldb-forward.h
  124 class Log;

References

include/llvm/ADT/StringMap.h
  129   ValueTy second;
  138   const ValueTy &getValue() const { return second; }
  139   ValueTy &getValue() { return second; }
  141   void setValue(const ValueTy &V) { second = V; }
  158 class StringMapEntry final : public StringMapEntryStorage<ValueTy> {
  246   using MapEntryTy = StringMapEntry<ValueTy>;
  260   StringMap(std::initializer_list<std::pair<StringRef, ValueTy>> List)
  330   using mapped_type = ValueTy;
  331   using value_type = StringMapEntry<ValueTy>;
  334   using const_iterator = StringMapConstIterator<ValueTy>;
  335   using iterator = StringMapIterator<ValueTy>;
  350   iterator_range<StringMapKeyIterator<ValueTy>> keys() const {
  369   ValueTy lookup(StringRef Key) const {
  378   ValueTy &operator[](StringRef Key) { return try_emplace(Key).first->second; }
  413   std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) {
  531     : public StringMapIterBase<StringMapConstIterator<ValueTy>,
  532                                const StringMapEntry<ValueTy>> {
  533   using base = StringMapIterBase<StringMapConstIterator<ValueTy>,
  534                                  const StringMapEntry<ValueTy>>;
  542   const StringMapEntry<ValueTy> &operator*() const {
  548 class StringMapIterator : public StringMapIterBase<StringMapIterator<ValueTy>,
  549                                                    StringMapEntry<ValueTy>> {
  551       StringMapIterBase<StringMapIterator<ValueTy>, StringMapEntry<ValueTy>>;
  551       StringMapIterBase<StringMapIterator<ValueTy>, StringMapEntry<ValueTy>>;
  559   StringMapEntry<ValueTy> &operator*() const {
  563   operator StringMapConstIterator<ValueTy>() const {
tools/lldb/include/lldb/Core/Module.h
  796   void LogMessage(Log *log, const char *format, ...)
  799   void LogMessageVerboseBacktrace(Log *log, const char *format, ...)
tools/lldb/include/lldb/Core/ModuleList.h
  184   void LogUUIDAndPaths(Log *log, const char *prefix_cstr);
tools/lldb/include/lldb/Core/ValueObject.h
  660   void LogValueObject(Log *log);
  662   void LogValueObject(Log *log, const DumpValueObjectOptions &options);
tools/lldb/include/lldb/Expression/DiagnosticManager.h
  136   void Dump(Log *log);
tools/lldb/include/lldb/Expression/IRExecutionUnit.h
  362     void dump(Log *log);
tools/lldb/include/lldb/Expression/Materializer.h
  106                            Log *log) = 0;
tools/lldb/include/lldb/Symbol/ClangASTImporter.h
   35   static void DumpCounters(Log *log);
   81   static void DumpCounters(Log *log, Counters &counters);
tools/lldb/include/lldb/Utility/DataExtractor.h
  197   lldb::offset_t PutToLog(Log *log, lldb::offset_t offset,
tools/lldb/include/lldb/Utility/Log.h
   61     std::atomic<Log *> log_ptr;
   68     constexpr Channel(llvm::ArrayRef<Log::Category> categories,
   77     Log *GetLogIfAll(uint32_t mask) {
   78       Log *log = log_ptr.load(std::memory_order_relaxed);
   88     Log *GetLogIfAny(uint32_t mask) {
   89       Log *log = log_ptr.load(std::memory_order_relaxed);
  202   typedef llvm::StringMap<Log> ChannelMap;
  206       const Log::ChannelMap::value_type &entry,
  216   Log(const Log &) = delete;
  217   void operator=(const Log &) = delete;
tools/lldb/include/lldb/Utility/Logging.h
   57 Log *GetLogIfAllCategoriesSet(uint32_t mask);
   59 Log *GetLogIfAnyCategoriesSet(uint32_t mask);
tools/lldb/include/lldb/Utility/StringList.h
  113   virtual void LogDump(Log *log, const char *name = nullptr);
  118   static void LogDump(Log *log, T s_iterable, const char *name = nullptr) {
tools/lldb/source/API/SBDebugger.cpp
  744   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
  774   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
  789   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
  836   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
  851   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
  875   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
  962   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
  987   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
 1005   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
 1023   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
 1302   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
 1424   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
tools/lldb/source/API/SBFrame.cpp
 1083   Log *expr_log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/API/SBTarget.cpp
 2314   Log *expr_log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Breakpoint/Breakpoint.cpp
  498   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  661   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
tools/lldb/source/Breakpoint/BreakpointLocation.cpp
  231   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS);
  390   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS);
  453     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS);
tools/lldb/source/Breakpoint/BreakpointResolver.cpp
  295   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
  148         Log *log(
tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
  131   Log * log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS);
tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
   36       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  262   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
tools/lldb/source/Commands/CommandObjectLog.cpp
   41     for (llvm::StringRef channel : Log::ListChannels())
   45     Log::ForEachChannelCategory(
  245       Log::DisableAllLogChannels();
  250       if (Log::DisableLogChannel(channel, args.GetArgumentArrayRef(),
  287     for (llvm::StringRef channel : Log::ListChannels())
  296       Log::ListAllLogChannels(output_stream);
  302             success && Log::ListChannelCategories(entry.ref(), output_stream);
tools/lldb/source/Commands/CommandObjectTarget.cpp
 1072           Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
tools/lldb/source/Core/AddressResolverFileLine.cpp
   46   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
tools/lldb/source/Core/AddressResolverName.cpp
   41       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
   79   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
tools/lldb/source/Core/Communication.cpp
  126   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_COMMUNICATION);
  309   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_COMMUNICATION));
tools/lldb/source/Core/Debugger.cpp
 1197   return Log::EnableLogChannel(log_stream_sp, log_options, channel, categories,
tools/lldb/source/Core/FormatEntity.cpp
  513   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
  625   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
  683   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
tools/lldb/source/Core/Mangled.cpp
  183   if (Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DEMANGLE)) {
  210   if (Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DEMANGLE)) {
tools/lldb/source/Core/Module.cpp
  137   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_OBJECT |
  236   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_OBJECT |
  268   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_OBJECT |
 1163 void Module::LogMessage(Log *log, const char *format, ...) {
 1176 void Module::LogMessageVerboseBacktrace(Log *log, const char *format, ...) {
tools/lldb/source/Core/ModuleList.cpp
  579 void ModuleList::LogUUIDAndPaths(Log *log, const char *prefix_cstr) {
  753           Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_MODULES));
tools/lldb/source/Core/RichManglingContext.cpp
   41   if (Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DEMANGLE)) {
  110     if (Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DEMANGLE))
tools/lldb/source/Core/ValueObject.cpp
  280   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
 2738 void ValueObject::LogValueObject(Log *log) {
 2743 void ValueObject::LogValueObject(Log *log,
tools/lldb/source/Core/ValueObjectDynamicValue.cpp
  208   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES));
tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
   82   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS);
  147   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS);
  225   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS);
tools/lldb/source/DataFormatters/FormatManager.cpp
  637   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
  712   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
  786   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
  848   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
  179   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
  218   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
  259   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
  300   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_DATAFORMATTERS));
tools/lldb/source/Expression/DWARFExpression.cpp
  722                                        Status *error_ptr, Log *log) {
 1049   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Expression/DiagnosticManager.cpp
   18 void DiagnosticManager::Dump(Log *log) {
tools/lldb/source/Expression/ExpressionVariable.cpp
   44   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Expression/FunctionCaller.cpp
  219   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  230   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EXPRESSIONS |
  270   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EXPRESSIONS |
  340   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EXPRESSIONS |
tools/lldb/source/Expression/IRExecutionUnit.cpp
   71   if (Log *log =
  100   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  245   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  590   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  620   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1029   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1056   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1197 void IRExecutionUnit::AllocationRecord::dump(Log *log) {
tools/lldb/source/Expression/IRInterpreter.cpp
  326     lldb_private::Log *log(
  489   lldb_private::Log *log(
  645   lldb_private::Log *log(
tools/lldb/source/Expression/IRMemoryMap.cpp
  291   lldb_private::Log *log(
  479   if (lldb_private::Log *log =
  577   if (lldb_private::Log *log =
  708   if (lldb_private::Log *log =
tools/lldb/source/Expression/LLVMUserExpression.cpp
   70   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EXPRESSIONS |
  248   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Expression/Materializer.cpp
   61     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  140     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  192     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  334                  Log *log) override {
  424     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  593     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  673                  Log *log) override {
  946                  Log *log) override {
 1052     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1099     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1114                  Log *log) override {
 1169     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1232     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1289                  Log *log) override {
 1375   if (Log *log =
 1411     if (Log *log =
tools/lldb/source/Expression/UserExpression.cpp
  147   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EXPRESSIONS |
tools/lldb/source/Host/common/Host.cpp
  165   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Host/common/HostInfoBase.cpp
  115     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  127     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  138     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  150     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  163     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  175     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  188     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  217   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
tools/lldb/source/Host/common/HostNativeThreadBase.cpp
   64   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
   53     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Host/common/NativeProcessProtocol.cpp
   66   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  120   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  144   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  228   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  326   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  348   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  361   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  378   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  444   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  583   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_BREAKPOINTS);
tools/lldb/source/Host/common/NativeRegisterContext.cpp
  113   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
  188   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
tools/lldb/source/Host/common/ProcessLaunchInfo.cpp
  183   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS);
  211   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS);
tools/lldb/source/Host/common/Socket.cpp
  152   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_COMMUNICATION));
  172   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
  210   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
  342   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_COMMUNICATION));
  370   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_COMMUNICATION));
  394   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
tools/lldb/source/Host/common/TCPSocket.cpp
  142   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_COMMUNICATION));
  178   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
tools/lldb/source/Host/common/UDPSocket.cpp
   60   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
tools/lldb/source/Host/linux/Host.cpp
  125   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  164   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Host/linux/HostInfoLinux.cpp
   90     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST));
tools/lldb/source/Host/linux/Support.cpp
   15   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
   27   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
   37   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
   80   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION |
   92   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION |
  108   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION |
  119   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
  137   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
  152   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
  295   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
  358   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
  466   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION));
  554   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_CONNECTION));
tools/lldb/source/Initialization/SystemInitializerCommon.cpp
  101   Log::Initialize();
  133   Log::DisableAllLogChannels();
tools/lldb/source/Interpreter/CommandInterpreter.cpp
 1598   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_COMMANDS));
tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
 1685   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
 1688   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
  568   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
  565   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
  230   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
   81   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  479     Log *m_log =
  556   Log *m_log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS);
  934     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS);
tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
  211   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
  262   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.cpp
 1104   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp
   79   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
  850     if (Log *log =
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
  440   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  655   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  766       Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
 1067   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
 1163   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
 1424 void DynamicLoaderDarwinKernel::KextImageInfo::PutToLog(Log *log) const {
 1436 void DynamicLoaderDarwinKernel::PutToLog(Log *log) const {
 1520   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.h
   77   void PutToLog(lldb_private::Log *log) const;
  194     void PutToLog(lldb_private::Log *log) const;
tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
  266   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  316   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  349   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  469     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  490       Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  601   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
  336 void HexagonDYLDRendezvous::DumpToLog(Log *log) const {
tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
  123   void DumpToLog(lldb_private::Log *log) const;
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
  148   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  191   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  509   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  607   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  729 void DynamicLoaderDarwin::Segment::PutToLog(Log *log,
  769 void DynamicLoaderDarwin::ImageInfo::PutToLog(Log *log) const {
  834   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
 1118   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.h
   94     void PutToLog(lldb_private::Log *log, lldb::addr_t slide) const;
  168     void PutToLog(lldb_private::Log *log) const;
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
  157   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  309   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  335 void DynamicLoaderMacOS::PutToLog(Log *log) const {
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.h
   68   void PutToLog(lldb_private::Log *log) const;
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
  528   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  569   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  693   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  971 void DynamicLoaderMacOSXDYLD::PutToLog(Log *log) const {
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.h
   72   void PutToLog(lldb_private::Log *log) const;
tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
   30   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
   97   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  118   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  603 void DYLDRendezvous::DumpToLog(Log *log) const {
tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
  116   void DumpToLog(lldb_private::Log *log) const;
tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
   87   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  176   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  224   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  267   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  309   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  388   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  512     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  533     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  554   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  585       Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  693   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  709   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
  124     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  154   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
   78 void ASTDumper::ToLog(Log *log, const char *prefix) {
tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
   31   void ToLog(Log *log, const char *prefix);
tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
   56   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  115   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  157   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  201   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  421   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  441   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  460       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
  270   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  418   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  539   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  690   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  816   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1138     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1153   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1459   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1512   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1744   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1871   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 2000     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS);
 2020       Log *log =
 2180     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
  130   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  202     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS);
  288   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  360   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  694   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  787   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1519   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1618   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1680   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1718   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1773   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1849   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1896   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 2086   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 2163     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
  171       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  245   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  277   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
 1171   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
  181   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
   32   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
   50   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  162     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
   61   Log *m_log;
  651   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
   93   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  440   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  447   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  506   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  551   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  745   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.cpp
  321     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  472     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  543   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
  168   lldb_private::Log *log(
  416   lldb_private::Log *log(
  554   lldb_private::Log *log(
  767   lldb_private::Log *log(
  893   lldb_private::Log *log(
  928   lldb_private::Log *log(
 1044   lldb_private::Log *log(
 1072   lldb_private::Log *log(
 1143   lldb_private::Log *log(
 1185   lldb_private::Log *log(
 1280   lldb_private::Log *log(
 1312   lldb_private::Log *log(
 1331   lldb_private::Log *log(
 1433   lldb_private::Log *log(
 1658   lldb_private::Log *log(
 1844   lldb_private::Log *log(
tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp
  221   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  248   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  285   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  342   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  377   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  189   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_JIT_LOADER));
  221   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_JIT_LOADER));
  285   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_JIT_LOADER));
tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
  324     Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
   80             Log *log(
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
  506   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES));
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
   37     Log *log(GetLogIfAllCategoriesSet(
   77     Log *log(GetLogIfAllCategoriesSet(
  105     Log *log(GetLogIfAllCategoriesSet(
  421   Log *log(GetLogIfAllCategoriesSet(
  561   Log *log(GetLogIfAllCategoriesSet(
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
  332     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
 1211             Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 1294   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_TYPES));
 1415   Log *type_log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES);
 1494   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES));
 1556   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_TYPES));
 1718   Log *type_log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES);
 1804   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_TYPES));
 1872   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_TYPES));
 2089   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES));
 2514   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES));
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
  580   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  764   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  882     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
  142     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.cpp
   65   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
   82   Log *log(
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
  122   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
  150   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
  226   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
  270   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
  303   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
  348   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
  390   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
  467   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
  829   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  888   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
 1111   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1122   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1260   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1360   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1407   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1435   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1472   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1533   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1625   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1681   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1828   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1863   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1898   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 1959   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 2016   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 2099   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 2165   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 2226   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 2311   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 2355   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 2403   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 2623   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 2742   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 2874   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
 2965   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 3172   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 3460   Log *log(
 3489   Log *log(
 3517   Log *log(
 3549   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 3587   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE));
 3653   Log *log(
 3749   Log *log(
 3846   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
 3869   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS);
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
   88   Log *log(
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  233     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS));
  497   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_MODULES));
 1000   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_MODULES));
 1367   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_MODULES));
 1678   lldb_private::Log *Log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_MODULES);
 2613             Log *log =
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 2020   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS));
 2061   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS));
 2457     Log *unwind_or_symbol_log(lldb_private::GetLogIfAnyCategoriesSet(
 4833       Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS |
 5661   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_SYMBOLS |
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
  241   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  955   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
  121     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OS));
  154   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OS));
  314   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
  376   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
tools/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp
   60   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
  212   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
  287     Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM);
  334     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp
   31   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
   90   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
  138   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
  154   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
   43   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp
   41   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
  271   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
  216   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
  252           Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
  282             Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
  298         Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
  315         Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
 1725       Log *log_verbose = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.cpp
   62   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleBridge.cpp
   60   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleTV.cpp
   61   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleWatch.cpp
   58   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.cpp
  143   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  395   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  415   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  448   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
  518   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.cpp
   53   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
   41   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
  240   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
   41   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
  235   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
  300   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
  506   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  167   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
  253     Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
  270     Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
  369   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
  599   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
  610   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
  622   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
  670   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
  681   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
   74     Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
  104   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
  139   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
  215   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
  267   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
  317   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
  402   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
  518   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
  563   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
  735   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
  745   Log *log(
  762   Log *log(
  781   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
 1033   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
 1131   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
 1144   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
 1185   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
 1290   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
 1343   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
 1451     Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
 1467   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_MEMORY));
 1495   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_MEMORY));
 1565   Log *const log = ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD);
 1584   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD));
 1657   Log *const log = ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD);
 1697   Log *const log = ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD);
 1724   Log *log(
 1744   Log *const log = ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD);
 1756   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS));
 1794   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
 1826   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
 1847   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
 1865   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
 1906   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
 1939   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
 1975   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
 2032   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
  137   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_REGISTERS));
  154   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_REGISTERS));
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.cpp
 1183   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
tools/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
   41 void LogThreadStopInfo(Log &log, const ThreadStopInfo &stop_info,
  109   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
  276   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
  329   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
  407   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
  433   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
tools/lldb/source/Plugins/Process/Linux/ProcessorTrace.cpp
   52   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
  177   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
  245   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
  276   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
  306   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
  352   Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE));
tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp
   16 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); });
tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
   28   static Log::Channel g_channel;
   33   static Log *GetLogIfAllCategoriesSet(uint32_t mask) {
tools/lldb/source/Plugins/Process/Utility/AuxVector.cpp
   40 void AuxVector::DumpToLog(lldb_private::Log *log) const {
tools/lldb/source/Plugins/Process/Utility/AuxVector.h
   64   void DumpToLog(lldb_private::Log *log) const;
tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
   34   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
   41   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
 1111 void RegisterContextDarwin_arm::LogDBGRegisters(Log *log, const DBG &dbg) {
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h
  135   static void LogDBGRegisters(lldb_private::Log *log, const DBG &dbg);
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
  290 void RegisterContextDarwin_arm64::LogDBGRegisters(Log *log, const DBG &dbg) {
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
  102   static void LogDBGRegisters(lldb_private::Log *log, const DBG &dbg);
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
  496 void RegisterContextDarwin_i386::LogGPR(Log *log, const char *title) {
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.h
  168   void LogGPR(lldb_private::Log *log, const char *title);
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.h
  173   void LogGPR(lldb_private::Log *log, const char *format, ...);
tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
  114   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  267   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  661       Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
 2157   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
 2179   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
  105   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  123   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  320   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
  422   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
   68   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
   39   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));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  101   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
  111   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
  136     Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
  271   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
  412   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
  646   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
  928   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
  437         Log *log(
  522     if (Log *log = ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(
  658     Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_PROCESS |
 1124   Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_PROCESS));
 2002   Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_PROCESS |
 2682   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
 2784     Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_PROCESS |
 3326   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3369   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3424   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3495   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3913     } else if (Log *log = ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(
 3928     Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
   80 void GDBRemoteCommunicationHistory::Dump(Log *log) const {
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
   41   void Dump(Log *log) const;
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
  128   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
  140   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  433   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
  996   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  206   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
  285   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
  332   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
  346   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
  407   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
  498   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_THREAD));
  575   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_THREAD));
  792   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
  816   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
  841   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
  890   Log *log(GetLogIfAnyCategoriesSet(GDBR_LOG_COMM));
  987     if (Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS))
 1014       if (Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS))
 1033   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 1301   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 1356   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_THREAD));
 1437   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_THREAD));
 1487   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 1588   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 1597   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 1618   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 1861   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 1903   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 1958   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 2034   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 2119   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 2197   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 2233   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_THREAD));
 2259   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 2340   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 2421   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 2455   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 2526     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 2598     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
 2608     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 2620     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 2686     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
 2695     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 2704   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_THREAD));
 2869   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 2917   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 2978   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 3013   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 3060   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 3077   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_THREAD));
 3191   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 3235   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD));
 3286   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
  107   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
  164   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
  207           Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_THREAD |
  390       Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_THREAD |
  496     Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_THREAD |
  673     Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_THREAD |
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  285   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_ASYNC));
  668   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
  769   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
  973   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 1050   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 1177   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 1290   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 1642   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_THREAD));
 1905                 Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(
 2329           Log *log(
 2432   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 2461   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 2643     Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 2686       Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 2984   Log *log(
 3098   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_BREAKPOINTS));
 3222   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_BREAKPOINTS));
 3291     Log *log(
 3327     Log *log(
 3375   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3513       Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3539   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3618   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3646   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3695   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3904   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
 3910   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
 3947   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
 3973   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
 4202         Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(
 4240   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
 4638   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS);
 5072   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp
   17 static constexpr Log::Category g_categories[] = {
   36 Log::Channel ProcessGDBRemoteLog::g_channel(g_categories, GDBR_LOG_DEFAULT);
   41     Log::Register("gdb-remote", g_channel);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
   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); }
tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
   42   Log *log(GetLogIfAnyCategoriesSet(GDBR_LOG_THREAD));
   49   Log *log(GetLogIfAnyCategoriesSet(GDBR_LOG_THREAD));
  217   Log *log(GetLogIfAnyCategoriesSet(GDBR_LOG_THREAD));
  231   Log *log(GetLogIfAnyCategoriesSet(GDBR_LOG_THREAD));
  282 void ThreadGDBRemote::Dump(Log *log, uint32_t index) {}
tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h
   57   void Dump(Log *log, uint32_t index);
tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
  133   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER |
  191   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER |
tools/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
  270   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_MODULES);
  331   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_MODULES);
  432   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_MODULES);
  469   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_MODULES);
tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
  409   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
 1011   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT);
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
  232       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT));
  282       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT));
  389   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT));
  413   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT));
  605   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT));
  675   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT));
 1040   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT));
tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
  970   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS);
 1090   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 1239   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 1494   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 1598   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 1797   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
  314   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS);
  435   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS);
  541   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS);
  644   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS);
  665   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS);
  739   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS);
tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
  106   Log *log = LogChannelDWARF::GetLogIfAny(DWARF_LOG_TYPE_COMPLETION |
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
  138 TypeSP DWARFASTParserClang::ParseTypeFromDWO(const DWARFDIE &die, Log *log) {
  372   Log *log(LogChannelDWARF::GetLogIfAny(DWARF_LOG_TYPE_COMPLETION |
 1319   Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_TYPE_COMPLETION |
 1936   Log *log =
 2296   void LogDIEs(Log *log) {
 3552       Log *log =
 3678   Log *log = nullptr; // (LogChannelDWARF::GetLogIfAny(DWARF_LOG_DEBUG_INFO |
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
  162   lldb::TypeSP ParseTypeFromDWO(const DWARFDIE &die, lldb_private::Log *log);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
   61 void DWARFDebugAranges::Dump(Log *log) const {
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h
   37   void Dump(lldb_private::Log *log) const;
tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
   13 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"); }
tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.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); }
tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
   95   Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS);
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
  163   Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
  442   Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
  615     Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
  900       Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
 1345     Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO));
 1436     Log *log(LogChannelDWARF::GetLogIfAny(DWARF_LOG_DEBUG_INFO |
 1737         Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
 1999   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
 2012   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
 2120   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
 2254   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
 2309   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
 2377   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
 2496   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
 2844       Log *log(LogChannelDWARF::GetLogIfAny(DWARF_LOG_TYPE_COMPLETION |
 3737   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
   62   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_MAP));
  289     Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_MAP));
tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetItemInfoHandler.cpp
  134   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYSTEM_RUNTIME));
  233   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYSTEM_RUNTIME));
tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.cpp
  138   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYSTEM_RUNTIME));
  232   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYSTEM_RUNTIME));
tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp
  149   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYSTEM_RUNTIME));
  235   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYSTEM_RUNTIME));
tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp
  145   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYSTEM_RUNTIME));
  241   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYSTEM_RUNTIME));
tools/lldb/source/Plugins/SystemRuntime/MacOSX/SystemRuntimeMacOSX.cpp
  881   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYSTEM_RUNTIME));
tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
   73     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  364   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  396   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  477   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  503   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
tools/lldb/source/Symbol/Block.cpp
  327     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS));
tools/lldb/source/Symbol/ClangASTContext.cpp
  809   Log *m_log;
 1280     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS);
tools/lldb/source/Symbol/ClangASTImporter.cpp
   31 void ClangASTMetrics::DumpCounters(Log *log,
   47 void ClangASTMetrics::DumpCounters(Log *log) {
   70     Log *log =
  121     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  214       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  345   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  374   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  605   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  704   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS);
  888   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  901   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
  956   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS);
  968       if (Log *log_ast =
 1042   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
tools/lldb/source/Symbol/CompactUnwindInfo.cpp
  185       Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  254   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
tools/lldb/source/Symbol/CxxModuleHandler.cpp
  178   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS);
tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
  399     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  529   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND);
tools/lldb/source/Symbol/Function.cpp
  145   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  253   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Symbol/LocateSymbolFile.cpp
  154   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
tools/lldb/source/Symbol/ObjectFile.cpp
  274   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  293   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  303   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  595     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
tools/lldb/source/Symbol/SymbolContext.cpp
  494         Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS));
tools/lldb/source/Symbol/UnwindPlan.cpp
  408     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  419     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  436     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
  459     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND));
tools/lldb/source/Target/Memory.cpp
  263   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  319   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  349   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  388   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  408   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Target/ModuleCache.cpp
   83   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_MODULES));
tools/lldb/source/Target/Platform.cpp
  388   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  397   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  637   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
  747     Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
  819   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
 1007   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
 1062   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
 1092   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
 1220   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
 1598   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
tools/lldb/source/Target/Process.cpp
  503   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  551   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  707   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  734   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 1007   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 1029   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 1050   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 1069   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 1103   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STATE |
 1159   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 1304   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STATE |
 1335   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STATE |
 1354   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STATE |
 1414   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STATE |
 1757   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
 1833   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
 2337     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 2396   Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
 2634       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 2670   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 2679   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 2872   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS |
 3035   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS |
 3139     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 3339   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EVENTS |
 3491   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EVENTS));
 3553     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 3561   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 3619   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 3754   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 3974         Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STEP |
 3986         Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STEP |
 4236     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 4257     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 4276     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 4463     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 4569   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STEP | LIBLLDB_LOG_PROCESS);
 4720   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STEP |
 5488       Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
 5556   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
 5859   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Target/SectionLoadList.cpp
   66   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  139     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
  174   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER));
tools/lldb/source/Target/StackFrameList.cpp
   68       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
   92     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  187     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  248                                   ModuleList &images, Log *log) {
  356   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/StopInfo.cpp
  148           Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  267       Log *log = lldb_private::GetLogIfAnyCategoriesSet(
  530         Log *log_process(
  662         Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
  685     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS);
  883         Log *log_process(
tools/lldb/source/Target/Target.cpp
  120   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  639   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  775   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
  854   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  863   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  875   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  885   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  892   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  902   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  909   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  929   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
  947   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
 1125   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 1156   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 1185   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 1213   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 1229   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 1246   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 1265   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 1284   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 1303   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 1320   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS));
 1386   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_TARGET));
 1453   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_TARGET));
 1541   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_TARGET));
 2830   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_TARGET));
 3075   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
tools/lldb/source/Target/Thread.cpp
  240   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  250   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  477   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
  705   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  923   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  986   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
 1026     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
 1038   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
 1055   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
 1232   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
 1264   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadList.cpp
  228   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  363   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  419   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  463   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  517     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  523     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlan.cpp
   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));
tools/lldb/source/Target/ThreadPlanBase.cpp
   76   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanCallFunction.cpp
   49   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STEP));
  146   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  169   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STEP));
  247   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STEP |
  388   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  440       Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
   69   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanPython.cpp
   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));
tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
  173   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
   44     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
   65   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  101   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanStepInRange.cpp
  144   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  388   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  470         Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  492       Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
   97   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  127     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  246     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanStepOut.cpp
   46   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  409     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  432   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
   64     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  150     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
  127   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  340   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  373         Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanStepRange.cpp
   68   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  103   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  289     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  302   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  382   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  449     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
  460   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Target/ThreadPlanStepThrough.cpp
   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));
tools/lldb/source/Target/ThreadPlanStepUntil.cpp
  328     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
tools/lldb/source/Utility/ArchSpec.cpp
  950       Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_TARGET | LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_PLATFORM));
tools/lldb/source/Utility/Broadcaster.cpp
   32   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
   42   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  214   if (Log *log = lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EVENTS)) {
  265   Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EVENTS));
  296     Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EVENTS));
tools/lldb/source/Utility/DataExtractor.cpp
  975 lldb::offset_t DataExtractor::PutToLog(Log *log, offset_t start_offset,
tools/lldb/source/Utility/Listener.cpp
   43   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
   50   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
   59   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
  100     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EVENTS));
  131     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EVENTS));
  203   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EVENTS));
  273   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EVENTS));
  351   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EVENTS));
tools/lldb/source/Utility/Log.cpp
   38 llvm::ManagedStatic<Log::ChannelMap> Log::g_channel_map;
   41     const Log::ChannelMap::value_type &entry,
  183   pthread_atfork(nullptr, nullptr, &Log::DisableLoggingChild);
tools/lldb/source/Utility/Logging.cpp
   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) {
tools/lldb/source/Utility/ReproducerInstrumentation.cpp
   47   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_API);
tools/lldb/source/Utility/StringList.cpp
  226 void StringList::LogDump(Log *log, const char *name) {
tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp
   53     bool success = Log::EnableLogChannel(
tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
  118   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
  483   Log *log(lldb_private::GetLogIfAnyCategoriesSet(GDBR_LOG_PROCESS));
tools/lldb/unittests/Utility/LogTest.cpp
   22 static constexpr Log::Category test_categories[] = {
   27 static Log::Channel test_channel(test_categories, default_flags);
   36   return Log::EnableLogChannel(stream_sp, log_options, channel, categories,
   45   return Log::DisableLogChannel(channel, categories, error_stream);
   51   return Log::ListChannelCategories(channel, result_stream);
   57   void TearDown() override { Log::DisableAllLogChannels(); }
   60     Log::Register("chan", test_channel);
   64     Log::Unregister("chan");
   76   Log *m_log;
   81   Log *getLog() { return m_log; }
  112   Log *log = nullptr;
  118   Log::Register("chan", test_channel);
  119   Log::Unregister("chan");
  120   Log::Register("chan", test_channel);
  121   Log::Unregister("chan");
  126   Log::Register("chan", test_channel);
  133   Log::Unregister("chan");
  168   Log *log = test_channel.GetLogIfAll(FOO);
usr/include/c++/7.4.0/atomic
  354       typedef _Tp* 			__pointer_type;
  355       typedef __atomic_base<_Tp*>	__base_type;
usr/include/c++/7.4.0/bits/atomic_base.h
  568       typedef _PTp* 	__pointer_type;
utils/unittest/googletest/include/gtest/gtest-printers.h
  407                     T* p, ::std::ostream* os) {
  416     if (IsTrue(ImplicitlyConvertible<T*, const void*>::value)) {
utils/unittest/googletest/include/gtest/gtest.h
 1475       T* rhs) {