| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Log.cpp | 38 llvm::ManagedStatic<Log::ChannelMap> Log::g_channel_map; 40 void Log::ForEachCategory( in ForEachCategory() 100 void Log::Disable(uint32_t flags) { in Disable() 110 const Flags Log::GetOptions() const { in GetOptions() 114 const Flags Log::GetMask() const { in GetMask() 182 void Log::Initialize() { in Initialize() 202 bool Log::EnableLogChannel( in EnableLogChannel() 244 void Log::DisableAllLogChannels() { in DisableAllLogChannels() 249 void Log::ForEachChannelCategory( in ForEachChannelCategory() 276 bool Log::GetVerbose() const { in GetVerbose() [all …]
|
| H A D | 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); in InitializeLldbChannel() 58 Log *lldb_private::GetLogIfAllCategoriesSet(uint32_t mask) { in GetLogIfAllCategoriesSet() 62 Log *lldb_private::GetLogIfAnyCategoriesSet(uint32_t mask) { in GetLogIfAnyCategoriesSet()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Log.h | 49 class Log final { 61 std::atomic<Log *> log_ptr; 62 friend class Log; variable 77 Log *GetLogIfAll(uint32_t mask) { in GetLogIfAll() 88 Log *GetLogIfAny(uint32_t mask) { in GetLogIfAny() 133 Log(Channel &channel) : m_channel(channel) {} in Log() function 134 ~Log() = default; 202 typedef llvm::StringMap<Log> ChannelMap; 206 const Log::ChannelMap::value_type &entry, 216 Log(const Log &) = delete; [all …]
|
| H A D | Logging.h | 55 class Log; variable 57 Log *GetLogIfAllCategoriesSet(uint32_t mask); 59 Log *GetLogIfAnyCategoriesSet(uint32_t mask);
|
| /freebsd-13.1/usr.bin/patch/tests/ |
| H A D | PR74127.in | 2 if {![info exists Log(compressProg)]} { 3 set Log(compressProg) gzip 7 if {![info exists Log(flushInterval)]} { 8 set Log(flushInterval) [expr {60 * 1000}] 12 if {![info exist Log(debug_log)]} { 13 set Log(debug_log) 0
|
| H A D | PR74127-good.diff | 3 - set Log(compressProg) gzip 4 + set Log(compressProg) /usr/local/bin/gzip
|
| H A D | PR74127-repro.diff | 3 - set Log(compressProg) /usr/local/bin/gzip 4 + set Log(compressProg) /usr/bin/gzip
|
| H A D | PR74127-cline.diff | 3 - set Log(compressProg) /usr/local/bin/gzip 4 + set Log(compressProg) /usr/bin/gzip
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | DwarfTransformer.cpp | 296 Die.dump(Log, 0, DIDumpOptions::getForSingleDIE()); in convertFunctionLineTable() 315 Die.dump(Log, 0, DIDumpOptions::getForSingleDIE()); in convertFunctionLineTable() 319 Log << "error: line table has addresses that do not " in convertFunctionLineTable() 322 CUI.LineTable->Rows[RowIndex2].dump(Log); in convertFunctionLineTable() 324 Die.dump(Log, 0, DIDumpOptions::getForSingleDIE()); in convertFunctionLineTable() 401 Die.dump(Log, 0, DIDumpOptions::getForSingleDIE()); in handleDie() 438 handleDie(Log, CUI, Die); in convert() 472 Log << ThreadLogStorage; in convert() 485 Log << "Verifying GSYM file \"" << GsymPath << "\":\n"; in verify() 531 Log << "error: address " << HEX64(Addr) << " has " in verify() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-diff/ |
| H A D | DiffConsumer.cpp | 158 void DiffConsumer::logf(const LogBuilder &Log) { in logf() argument 164 StringRef format = Log.getFormat(); in logf() 177 case 'l': printValue(Log.getArgument(arg++), true); break; in logf() 178 case 'r': printValue(Log.getArgument(arg++), false); break; in logf() 188 void DiffConsumer::logd(const DiffLogBuilder &Log) { in logd() argument 191 for (unsigned I = 0, E = Log.getNumLines(); I != E; ++I) { in logd() 193 switch (Log.getLineKind(I)) { in logd() 196 Log.getLeft(I)->print(dbgs()); dbgs() << '\n'; in logd() 201 Log.getLeft(I)->print(dbgs()); dbgs() << '\n'; in logd() 206 Log.getRight(I)->print(dbgs()); dbgs() << '\n'; in logd()
|
| H A D | DiffConsumer.h | 46 virtual void logf(const LogBuilder &Log) = 0; 49 virtual void logd(const DiffLogBuilder &Log) = 0; 85 void logf(const LogBuilder &Log) override; 86 void logd(const DiffLogBuilder &Log) override;
|
| /freebsd-13.1/cddl/usr.sbin/zfsd/ |
| H A D | zfsd_event.cc | 118 Log(LOG_INFO); in Process() 221 exp.Log(); in ReadLabel() 250 exp.Log(); in OnlineByLabel() 308 Log(LOG_INFO); in Process() 321 Log(LOG_INFO); in Process() 337 Log(LOG_INFO); in Process() 349 Log(LOG_INFO); in Process() 363 Log(LOG_INFO); in Process() 409 Log(LOG_INFO); in ProcessPoolEvent() 420 Log(LOG_INFO); in ProcessPoolEvent() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | 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); in Initialize() 33 void LogChannelDWARF::Terminate() { Log::Unregister("dwarf"); } in Terminate()
|
| H A D | LogChannelDWARF.h | 24 static Log::Channel g_channel; 30 static Log *GetLogIfAll(uint32_t mask) { return g_channel.GetLogIfAll(mask); } in GetLogIfAll() 31 static Log *GetLogIfAny(uint32_t mask) { return g_channel.GetLogIfAny(mask); } in GetLogIfAny()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | NativeRegisterContextDBReg_arm64.cpp | 32 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS)); in NumSupportedHardwareBreakpoints() 46 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS)); in SetHardwareBreakpoint() 107 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS)); in ClearHardwareBreakpoint() 147 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS)); in GetHardwareBreakHitIndex() 167 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS)); in ClearAllHardwareBreakpoints() 209 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS)); in NumSupportedHardwareWatchpoints() 222 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS)); in SetHardwareWatchpoint() 315 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS)); in ClearHardwareWatchpoint() 387 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS)); in GetWatchpointSize() 405 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_WATCHPOINTS)); in WatchpointIsEnabled() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanPython.cpp | 78 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in ShouldStop() 97 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in IsPlanStale() 116 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in DoPlanExplainsStop() 135 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in MischiefManaged() 150 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in GetPlanRunState() 172 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in WillStop()
|
| H A D | ThreadPlan.cpp | 79 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP)); in ShouldReportStop() 119 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP)); in WillResume() 198 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in ValidatePlan() 214 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in ShouldStop() 230 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in WillStop() 246 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in DoPlanExplainsStop() 264 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in MischiefManaged() 281 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD)); in GetPlanRunState()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ |
| H A D | ProcessPOSIXLog.cpp | 15 static constexpr Log::Category g_categories[] = { 25 Log::Channel ProcessPOSIXLog::g_channel(g_categories, POSIX_LOG_DEFAULT); 29 llvm::call_once(g_once_flag, []() { Log::Register("posix", g_channel); }); in Initialize()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | 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); in Initialize()
|
| H A D | ProcessGDBRemoteLog.h | 33 static Log::Channel g_channel; 38 static Log *GetLogIfAllCategoriesSet(uint32_t mask) { return g_channel.GetLogIfAll(mask); } in GetLogIfAllCategoriesSet() 39 static Log *GetLogIfAnyCategoryIsSet(uint32_t mask) { return g_channel.GetLogIfAny(mask); } in GetLogIfAnyCategoryIsSet()
|
| H A D | GDBRemoteCommunicationServerLLGS.cpp | 236 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS)); in LaunchProcess() 318 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS)); in AttachToProcess() 365 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS)); in AttachWaitProcess() 435 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS)); in InitializeDelegate() 449 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS)); in SendWResponse() 603 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD)); in GetRegistersAsJSON() 1081 Log *log(GetLogIfAnyCategoriesSet(GDBR_LOG_COMM)); in DataAvailableCallback() 1668 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD)); in SetCurrentThreadID() 1677 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD)); in SetContinueThreadID() 1836 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD)); in Handle_qfThreadInfo() [all …]
|
| H A D | GDBRemoteClientBase.cpp | 43 Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS)); in SendContinuePacketAndWaitForResponse() 187 if (Log *log = in SendPacketAndWaitForResponse() 206 if (Log *log = in SendPacketAndReceiveResponseWithOutputSupport() 240 Log *log = ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS); in SendPacketAndWaitForResponseNoLock() 255 Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS)); in SendvContPacket() 340 Log *log = ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS); in lock() 378 Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS)); in SyncWithContinueThread()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | HostInfoBase.cpp | 122 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); in GetShlibDir() 132 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); in GetSupportExeDir() 142 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); in GetHeaderDir() 152 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); in GetSystemPluginDir() 163 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); in GetUserPluginDir() 173 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); in GetProcessTempDir() 185 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); in GetGlobalTempDir() 214 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); in ComputePathRelativeToLibrary()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DynamicLoaderPOSIXDYLD.cpp | 90 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); in DidAttach() 180 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); in DidLaunch() 228 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); in ProbeEntry() 271 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); in EntryBreakpointHit() 313 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); in SetRendezvousBreakpoint() 392 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); in RendezvousBreakpointHit() 540 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); in LoadVDSO() 561 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); in LoadInterpreterModule() 583 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); in LoadAllCurrentModules() 722 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); in GetThreadLocalData() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/ |
| H A D | ConnectionFileDescriptorPosix.cpp | 81 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION | in ConnectionFileDescriptor() 93 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION | in ConnectionFileDescriptor() 109 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION | in ~ConnectionFileDescriptor() 120 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION)); in OpenCommandPipe() 138 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION)); in CloseCommandPipe() 153 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION)); in Connect() 296 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION)); in Disconnect() 359 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION)); in Read() 467 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_CONNECTION)); in Write() 555 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_CONNECTION)); in BytesAvailable()
|