| /freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/ |
| H A D | LanguageCategory.cpp | 43 if (!IsEnabled()) in Get() 66 if (!IsEnabled()) in Get() 89 if (!IsEnabled()) in Get() 112 if (!IsEnabled()) in Get() 133 if (!IsEnabled()) in GetHardcoded() 153 if (!IsEnabled()) in GetHardcoded() 173 if (!IsEnabled()) in GetHardcoded() 193 if (!IsEnabled()) in GetHardcoded() 228 bool LanguageCategory::IsEnabled() { return m_enabled; } in IsEnabled() function in LanguageCategory
|
| H A D | DataVisualization.cpp | 135 if (GetFormatManager().GetCategory(category)->IsEnabled()) in Enable() 148 if (GetFormatManager().GetCategory(category)->IsEnabled()) in Disable() 161 if (category->IsEnabled()) in Enable() 169 if (category.get() && category->IsEnabled()) in Disable()
|
| H A D | TypeCategory.cpp | 105 if (!IsEnabled() || !IsApplicable(valobj)) in Get() 118 if (!IsEnabled() || !IsApplicable(valobj)) in Get() 131 if (!IsEnabled() || !IsApplicable(valobj)) in Get() 187 if (!IsEnabled()) in Get() 306 if (!IsEnabled() && only_enabled) in AnyMatches() 606 stream.Printf("%s (%s", GetName(), (IsEnabled() ? "enabled" : "disabled")); in GetDescription()
|
| H A D | FormatManager.cpp | 296 if (!category_sp->IsEnabled()) in GetFormatForType() 320 if (!category_sp->IsEnabled()) in GetSummaryForType() 344 if (!category_sp->IsEnabled()) in GetFilterForType() 369 if (!category_sp->IsEnabled()) in GetSyntheticForType() 409 if (!category_sp->IsEnabled()) in GetValidatorForType()
|
| H A D | TypeCategoryMap.cpp | 101 if (iter->second->IsEnabled()) in EnableAllCategories() 355 if (pos->second->IsEnabled()) in ForEach()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 72 bool BreakpointLocation::IsEnabled() const { in IsEnabled() function in BreakpointLocation 73 if (!m_owner.IsEnabled()) in IsEnabled() 76 return m_options_ap->IsEnabled(); in IsEnabled() 397 if (!IsEnabled()) in ShouldStop() 421 if (IsEnabled()) { in BumpHitCount() 429 if (IsEnabled()) { in UndoBumpHitCount() 636 (m_options_ap.get() ? m_options_ap->IsEnabled() : m_owner.IsEnabled()) in Dump()
|
| H A D | Watchpoint.cpp | 134 return IsEnabled(); in ShouldStop() 187 IsEnabled() ? "enabled" : "disabled", m_watch_read ? "r" : "", in DumpWithLevel() 210 bool Watchpoint::IsEnabled() const { return m_enabled; } in IsEnabled() function in Watchpoint
|
| H A D | Breakpoint.cpp | 293 if (enable == m_options_up->IsEnabled()) in SetEnabled() 306 bool Breakpoint::IsEnabled() { return m_options_up->IsEnabled(); } in IsEnabled() function in Breakpoint 545 if (!break_loc_sp->IsEnabled()) in ModulesChanged()
|
| /freebsd-12.1/usr.sbin/ppp/ |
| H A D | lcp.c | 309 lcp->want_acfcomp = IsEnabled(lcp->cfg.acfcomp) ? 1 : 0; in lcp_Setup() 315 lcp->want_protocomp = IsEnabled(lcp->cfg.protocomp) ? 1 : 0; in lcp_Setup() 318 if (IsEnabled(lcp->cfg.chap05)) { in lcp_Setup() 322 } else if (IsEnabled(lcp->cfg.chap80nt) || in lcp_Setup() 323 IsEnabled(lcp->cfg.chap80lm)) { in lcp_Setup() 326 } else if (IsEnabled(lcp->cfg.chap81)) { in lcp_Setup() 330 } else if (IsEnabled(lcp->cfg.pap)) { in lcp_Setup() 343 lcp->want_lqrperiod = IsEnabled(lcp->cfg.lqr) ? in lcp_Setup() 482 if (mp->cfg.enddisc.class != 0 && IsEnabled(mp->cfg.negenddisc) && in LcpSendConfigReq() 887 if (IsEnabled(lcp->cfg.pap)) { in LcpDecodeConfig() [all …]
|
| H A D | ccp.c | 188 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg])) in ccp_ReportStatus() 305 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in ccp_Required() 361 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in CcpSendConfigReq() 508 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in CcpLayerUp() 542 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg])) in CcpLayerUp() 802 if (IsEnabled(ccp->cfg.neg[f])) { in ccp_SetOpenMode()
|
| H A D | command.h | 62 #define IsEnabled(x) ((x) & NEG_ENABLED) macro
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ |
| H A D | StopInfoMachException.cpp | 467 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException() 505 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException() 547 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException() 580 if (bp_site_sp && bp_site_sp->IsEnabled()) { in CreateStopReasonWithMachException()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/ |
| H A D | Stoppoint.h | 32 virtual bool IsEnabled() = 0;
|
| H A D | BreakpointSite.h | 104 bool IsEnabled() const;
|
| H A D | BreakpointLocation.h | 96 bool IsEnabled() const;
|
| H A D | Watchpoint.h | 68 bool IsEnabled() const;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBWatchpoint.cpp | 141 bool SBWatchpoint::IsEnabled() { in IsEnabled() function in SBWatchpoint 146 return watchpoint_sp->IsEnabled(); in IsEnabled()
|
| H A D | SBBreakpointLocation.cpp | 94 bool SBBreakpointLocation::IsEnabled() { in IsEnabled() function in SBBreakpointLocation 99 return loc_sp->IsEnabled(); in IsEnabled()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBWatchpoint.h | 44 bool IsEnabled();
|
| H A D | SBBreakpointLocation.h | 39 bool IsEnabled();
|
| H A D | SBBreakpointName.h | 49 bool IsEnabled();
|
| H A D | SBBreakpoint.h | 54 bool IsEnabled();
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ |
| H A D | LanguageCategory.h | 59 bool IsEnabled();
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.h | 50 static bool IsEnabled();
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | ThreadPlanStepOverBreakpoint.cpp | 129 if (bp_site_sp && bp_site_sp->IsEnabled()) { in DoWillResume()
|