Home
last modified time | relevance | path

Searched refs:IsEnabled (Results 1 – 25 of 46) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/
H A DLanguageCategory.cpp43 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 DDataVisualization.cpp135 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 DTypeCategory.cpp105 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 DFormatManager.cpp296 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 DTypeCategoryMap.cpp101 if (iter->second->IsEnabled()) in EnableAllCategories()
355 if (pos->second->IsEnabled()) in ForEach()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp72 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 DWatchpoint.cpp134 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 DBreakpoint.cpp293 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 Dlcp.c309 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 Dccp.c188 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 Dcommand.h62 #define IsEnabled(x) ((x) & NEG_ENABLED) macro
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp467 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 DStoppoint.h32 virtual bool IsEnabled() = 0;
H A DBreakpointSite.h104 bool IsEnabled() const;
H A DBreakpointLocation.h96 bool IsEnabled() const;
H A DWatchpoint.h68 bool IsEnabled() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBWatchpoint.cpp141 bool SBWatchpoint::IsEnabled() { in IsEnabled() function in SBWatchpoint
146 return watchpoint_sp->IsEnabled(); in IsEnabled()
H A DSBBreakpointLocation.cpp94 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 DSBWatchpoint.h44 bool IsEnabled();
H A DSBBreakpointLocation.h39 bool IsEnabled();
H A DSBBreakpointName.h49 bool IsEnabled();
H A DSBBreakpoint.h54 bool IsEnabled();
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DLanguageCategory.h59 bool IsEnabled();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h50 static bool IsEnabled();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepOverBreakpoint.cpp129 if (bp_site_sp && bp_site_sp->IsEnabled()) { in DoWillResume()

12