Home
last modified time | relevance | path

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

123

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistry.cpp198 IsEnabledFn IsEnabled);
204 CheckerInfoSet &Ret, IsEnabledFn IsEnabled);
236 auto IsEnabled = [&](const CheckerInfo *Checker) { in initializeRegistry() local
245 collectWeakDependencies(Checker.WeakDependencies, Mgr, Deps, IsEnabled); in initializeRegistry()
264 IsEnabledFn IsEnabled) { in collectStrongDependencies() argument
267 if (!IsEnabled(Dependency)) in collectStrongDependencies()
272 IsEnabled)) in collectStrongDependencies()
284 IsEnabledFn IsEnabled) { in collectWeakDependencies() argument
289 collectWeakDependencies(Dependency->WeakDependencies, Mgr, Ret, IsEnabled); in collectWeakDependencies()
291 if (IsEnabled(Dependency) && in collectWeakDependencies()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DLanguageCategory.cpp39 if (!IsEnabled()) in Get()
93 if (!IsEnabled()) in GetHardcoded()
136 bool LanguageCategory::IsEnabled() { return m_enabled; } in IsEnabled() function in LanguageCategory
H A DDataVisualization.cpp111 if (GetFormatManager().GetCategory(category)->IsEnabled()) in Enable()
123 if (GetFormatManager().GetCategory(category)->IsEnabled()) in Disable()
136 if (category->IsEnabled()) in Enable()
144 if (category.get() && category->IsEnabled()) in Disable()
H A DTypeCategory.cpp88 if (!IsEnabled() || !IsApplicable(lang)) in Get()
99 if (!IsEnabled() || !IsApplicable(lang)) in Get()
110 if (!IsEnabled() || !IsApplicable(lang)) in Get()
228 if (!IsEnabled() && only_enabled) in AnyMatches()
465 stream.Printf("%s (%s", GetName(), (IsEnabled() ? "enabled" : "disabled")); in GetDescription()
H A DFormatManager.cpp315 if (!category_sp->IsEnabled()) in GetFormatForType()
339 if (!category_sp->IsEnabled()) in GetSummaryForType()
363 if (!category_sp->IsEnabled()) in GetFilterForType()
387 if (!category_sp->IsEnabled()) in GetSyntheticForType()
H A DTypeCategoryMap.cpp99 if (iter->second->IsEnabled()) in EnableAllCategories()
238 if (pos->second->IsEnabled()) in ForEach()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp306 if (wp_sp && wp_sp->IsEnabled()) { in GetStopInfoForHardwareBP()
322 if (bp_sp && bp_sp->IsEnabled()) { in GetStopInfoForHardwareBP()
420 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException()
463 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException()
496 if (bp_site_sp && bp_site_sp->IsEnabled()) { in CreateStopReasonWithMachException()
/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp69 bool BreakpointLocation::IsEnabled() const { in IsEnabled() function in BreakpointLocation
70 if (!m_owner.IsEnabled()) in IsEnabled()
73 return m_options_up->IsEnabled(); in IsEnabled()
400 if (!IsEnabled()) in ShouldStop()
418 if (IsEnabled()) { in BumpHitCount()
426 if (IsEnabled()) { in UndoBumpHitCount()
640 (m_options_up ? m_options_up->IsEnabled() : m_owner.IsEnabled()) in Dump()
H A DWatchpoint.cpp143 return IsEnabled(); in ShouldStop()
196 IsEnabled() ? "enabled" : "disabled", m_watch_read ? "r" : "", in DumpWithLevel()
219 bool Watchpoint::IsEnabled() const { return m_enabled; } in IsEnabled() function in Watchpoint
/freebsd-13.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 Dcommand.h62 #define IsEnabled(x) ((x) & NEG_ENABLED) macro
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()
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBWatchpoint.cpp163 bool SBWatchpoint::IsEnabled() { in IsEnabled() function in SBWatchpoint
164 LLDB_RECORD_METHOD_NO_ARGS(bool, SBWatchpoint, IsEnabled); in IsEnabled()
170 return watchpoint_sp->IsEnabled(); in IsEnabled()
329 LLDB_REGISTER_METHOD(bool, SBWatchpoint, IsEnabled, ()); in RegisterMethods()
H A DSBBreakpointLocation.cpp116 bool SBBreakpointLocation::IsEnabled() { in IsEnabled() function in SBBreakpointLocation
117 LLDB_RECORD_METHOD_NO_ARGS(bool, SBBreakpointLocation, IsEnabled); in IsEnabled()
123 return loc_sp->IsEnabled(); in IsEnabled()
490 LLDB_REGISTER_METHOD(bool, SBBreakpointLocation, IsEnabled, ()); in RegisterMethods()
H A DSBBreakpointName.cpp238 bool SBBreakpointName::IsEnabled() { in IsEnabled() function in SBBreakpointName
239 LLDB_RECORD_METHOD_NO_ARGS(bool, SBBreakpointName, IsEnabled); in IsEnabled()
248 return bp_name->GetOptions().IsEnabled(); in IsEnabled()
720 LLDB_REGISTER_METHOD(bool, SBBreakpointName, IsEnabled, ()); in RegisterMethods()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBBreakpoint.i122 IsEnabled ();
305 …enabled = property(IsEnabled, SetEnabled, doc='''A read/write property that configures whether thi…
H A DSBWatchpoint.i60 IsEnabled ();
H A DSBBreakpointLocation.i49 IsEnabled ();
H A DSBBreakpointName.i51 bool IsEnabled();
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppoint.h27 virtual bool IsEnabled() = 0;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DLanguageCategory.h41 bool IsEnabled();
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBWatchpoint.h49 bool IsEnabled();
H A DSBBreakpointLocation.h40 bool IsEnabled();
H A DSBBreakpointName.h50 bool IsEnabled();
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h45 static bool IsEnabled();

123