| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | CheckerRegistry.cpp | 198 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 D | LanguageCategory.cpp | 39 if (!IsEnabled()) in Get() 93 if (!IsEnabled()) in GetHardcoded() 136 bool LanguageCategory::IsEnabled() { return m_enabled; } in IsEnabled() function in LanguageCategory
|
| H A D | DataVisualization.cpp | 111 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 D | TypeCategory.cpp | 88 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 D | FormatManager.cpp | 315 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 D | TypeCategoryMap.cpp | 99 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 D | StopInfoMachException.cpp | 306 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 D | BreakpointLocation.cpp | 69 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 D | Watchpoint.cpp | 143 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 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 | command.h | 62 #define IsEnabled(x) ((x) & NEG_ENABLED) macro
|
| 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()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBWatchpoint.cpp | 163 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 D | SBBreakpointLocation.cpp | 116 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 D | SBBreakpointName.cpp | 238 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 D | SBBreakpoint.i | 122 IsEnabled (); 305 …enabled = property(IsEnabled, SetEnabled, doc='''A read/write property that configures whether thi…
|
| H A D | SBWatchpoint.i | 60 IsEnabled ();
|
| H A D | SBBreakpointLocation.i | 49 IsEnabled ();
|
| H A D | SBBreakpointName.i | 51 bool IsEnabled();
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | Stoppoint.h | 27 virtual bool IsEnabled() = 0;
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
| H A D | LanguageCategory.h | 41 bool IsEnabled();
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBWatchpoint.h | 49 bool IsEnabled();
|
| H A D | SBBreakpointLocation.h | 40 bool IsEnabled();
|
| H A D | SBBreakpointName.h | 50 bool IsEnabled();
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.h | 45 static bool IsEnabled();
|