/freebsd/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 | TypeCategory.cpp | 88 if (!IsEnabled() || !IsApplicable(lang)) in Get() 96 if (!IsEnabled() || !IsApplicable(lang)) in Get() 104 if (!IsEnabled() || !IsApplicable(lang)) in Get() 191 if (!IsEnabled() && only_enabled) in AnyMatches() 319 stream.Printf("%s (%s", GetName(), (IsEnabled() ? "enabled" : "disabled")); in GetDescription()
|
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 | TypeCategoryMap.cpp | 111 if (iter->second->IsEnabled()) in EnableAllCategories() 243 if (pos->second->IsEnabled()) in ForEach()
|
H A D | FormatManager.cpp | 308 if (!category_sp->IsEnabled()) in GetFormatForType() 332 if (!category_sp->IsEnabled()) in GetSummaryForType() 356 if (!category_sp->IsEnabled()) in GetFilterForType() 380 if (!category_sp->IsEnabled()) in GetSyntheticForType()
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointLocation.cpp | 68 bool BreakpointLocation::IsEnabled() const { in IsEnabled() function in BreakpointLocation 69 if (!m_owner.IsEnabled()) in IsEnabled() 72 return m_options_up->IsEnabled(); in IsEnabled() 393 if (!IsEnabled()) in ShouldStop() 411 if (IsEnabled()) { in BumpHitCount() 419 if (IsEnabled()) { in UndoBumpHitCount() 637 (m_options_up ? m_options_up->IsEnabled() : m_owner.IsEnabled()) in Dump()
|
H A D | Watchpoint.cpp | 262 return IsEnabled(); in ShouldStop() 355 IsEnabled() ? "enabled" : "disabled", m_watch_read ? "r" : "", in DumpWithLevel() 363 if (IsEnabled()) { in DumpWithLevel() 392 bool Watchpoint::IsEnabled() const { return m_enabled; } in IsEnabled() function in Watchpoint
|
/freebsd/usr.sbin/ppp/ |
H A D | lcp.c | 306 lcp->want_shortseq = IsEnabled(lcp->fsm.bundle->ncp.mp.cfg.shortseq) ? 1 : 0; in lcp_Setup() 307 lcp->want_acfcomp = IsEnabled(lcp->cfg.acfcomp) ? 1 : 0; in lcp_Setup() 313 lcp->want_protocomp = IsEnabled(lcp->cfg.protocomp) ? 1 : 0; in lcp_Setup() 316 if (IsEnabled(lcp->cfg.chap05)) { in lcp_Setup() 320 } else if (IsEnabled(lcp->cfg.chap80nt) || in lcp_Setup() 321 IsEnabled(lcp->cfg.chap80lm)) { in lcp_Setup() 324 } else if (IsEnabled(lcp->cfg.chap81)) { in lcp_Setup() 328 } else if (IsEnabled(lcp->cfg.pap)) { in lcp_Setup() 341 lcp->want_lqrperiod = IsEnabled(lcp->cfg.lqr) ? in lcp_Setup() 480 if (mp->cfg.enddisc.class != 0 && IsEnabled(mp->cfg.negenddisc) && in LcpSendConfigReq() [all …]
|
H A D | ccp.c | 186 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg])) in ccp_ReportStatus() 303 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in ccp_Required() 359 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in CcpSendConfigReq() 506 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in CcpLayerUp() 540 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg])) in CcpLayerUp() 800 if (IsEnabled(ccp->cfg.neg[f])) { in ccp_SetOpenMode()
|
H A D | command.h | 60 #define IsEnabled(x) ((x) & NEG_ENABLED) macro
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | StopInfoMachException.cpp | 514 if (bp_sp && bp_sp->IsEnabled()) { in GetStopInfoForHardwareBP() 684 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException() 741 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException() 769 if (bp_site_sp && bp_site_sp->IsEnabled()) { in CreateStopReasonWithMachException() 853 if (site->IsHardware() && site->IsEnabled()) { in WasContinueInterrupted()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | Stoppoint.h | 27 virtual bool IsEnabled() = 0;
|
H A D | BreakpointSite.h | 86 bool IsEnabled() const;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | LanguageCategory.h | 41 bool IsEnabled();
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaAttr.cpp | 1285 PragmaFPKind Kind, bool IsEnabled) { in ActOnPragmaFPValueChangingOption() argument 1286 if (IsEnabled) { in ActOnPragmaFPValueChangingOption() 1307 NewFPFeatures.setAllowFPReassociateOverride(IsEnabled); in ActOnPragmaFPValueChangingOption() 1310 NewFPFeatures.setAllowReciprocalOverride(IsEnabled); in ActOnPragmaFPValueChangingOption() 1335 void Sema::ActOnPragmaFEnvAccess(SourceLocation Loc, bool IsEnabled) { in ActOnPragmaFEnvAccess() argument 1337 if (IsEnabled) { in ActOnPragmaFEnvAccess() 1345 NewFPFeatures.setAllowFEnvAccessOverride(IsEnabled); in ActOnPragmaFEnvAccess() 1346 NewFPFeatures.setRoundingMathOverride(IsEnabled); in ActOnPragmaFEnvAccess()
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBBreakpointExtensions.i | 50 …enabled = property(IsEnabled, SetEnabled, doc='''A read/write property that configures whether thi…
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBWatchpoint.cpp | 154 bool SBWatchpoint::IsEnabled() { in SetEnabled() 161 return watchpoint_sp->IsEnabled(); in IsEnabled() 160 bool SBWatchpoint::IsEnabled() { IsEnabled() function in SBWatchpoint
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBWatchpoint.h | 57 bool IsEnabled();
|
H A D | SBBreakpointName.h | 50 bool IsEnabled();
|
H A D | SBBreakpointLocation.h | 49 bool IsEnabled();
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
H A D | StructuredDataDarwinLog.h | 45 static bool IsEnabled();
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | CommandFlags.cpp | 628 for (const auto &[Feature, IsEnabled] : sys::getHostCPUFeatures()) in getFeaturesStr() 629 Features.AddFeature(Feature, IsEnabled); in getFeaturesStr() 645 for (const auto &[Feature, IsEnabled] : sys::getHostCPUFeatures()) in getFeatureList() 646 Features.AddFeature(Feature, IsEnabled); in getFeatureList()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCSubtargetInfo.cpp | 342 auto IsEnabled = [&](const SubtargetFeatureKV &FeatureKV) { in getEnabledProcessorFeatures() local 345 llvm::copy_if(ProcFeatures, std::back_inserter(EnabledFeatures), IsEnabled); in getEnabledProcessorFeatures()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ |
H A D | TargetMachineC.cpp | 366 for (const auto &[Feature, IsEnabled] : sys::getHostCPUFeatures()) in LLVMGetHostCPUFeatures() 367 Features.AddFeature(Feature, IsEnabled); in LLVMGetHostCPUFeatures()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanStepOverBreakpoint.cpp | 115 if (bp_site_sp && bp_site_sp->IsEnabled()) { in DoWillResume()
|