Searched refs:IsEnabled (Results 1 - 25 of 55) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppoint.h27 virtual bool IsEnabled() = 0;
H A DBreakpointSite.h84 bool IsEnabled() const;
H A DBreakpointLocation.h77 bool IsEnabled() const;
/freebsd-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DLanguageCategory.cpp39 if (!IsEnabled())
93 if (!IsEnabled())
136 bool LanguageCategory::IsEnabled() { return m_enabled; } function in class:LanguageCategory
H A DDataVisualization.cpp111 if (GetFormatManager().GetCategory(category)->IsEnabled())
123 if (GetFormatManager().GetCategory(category)->IsEnabled())
136 if (category->IsEnabled())
144 if (category.get() && category->IsEnabled())
H A DTypeCategory.cpp90 if (!IsEnabled() || !IsApplicable(lang))
101 if (!IsEnabled() || !IsApplicable(lang))
112 if (!IsEnabled() || !IsApplicable(lang))
230 if (!IsEnabled() && only_enabled)
467 stream.Printf("%s (%s", GetName(), (IsEnabled() ? "enabled" : "disabled"));
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DLanguageCategory.h41 bool IsEnabled();
/freebsd-13-stable/usr.sbin/ppp/
H A Dcommand.h62 #define IsEnabled(x) ((x) & NEG_ENABLED) macro
H A Dlcp.c308 lcp->want_shortseq = IsEnabled(lcp->fsm.bundle->ncp.mp.cfg.shortseq) ? 1 : 0;
309 lcp->want_acfcomp = IsEnabled(lcp->cfg.acfcomp) ? 1 : 0;
315 lcp->want_protocomp = IsEnabled(lcp->cfg.protocomp) ? 1 : 0;
318 if (IsEnabled(lcp->cfg.chap05)) {
322 } else if (IsEnabled(lcp->cfg.chap80nt) ||
323 IsEnabled(lcp->cfg.chap80lm)) {
326 } else if (IsEnabled(lcp->cfg.chap81)) {
330 } else if (IsEnabled(lcp->cfg.pap)) {
343 lcp->want_lqrperiod = IsEnabled(lcp->cfg.lqr) ?
482 if (mp->cfg.enddisc.class != 0 && IsEnabled(m
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistry.cpp198 IsEnabledFn IsEnabled);
204 CheckerInfoSet &Ret, IsEnabledFn IsEnabled);
236 auto IsEnabled = [&](const CheckerInfo *Checker) { local
245 collectWeakDependencies(Checker.WeakDependencies, Mgr, Deps, IsEnabled);
264 IsEnabledFn IsEnabled) {
267 if (!IsEnabled(Dependency))
272 IsEnabled))
284 IsEnabledFn IsEnabled) {
289 collectWeakDependencies(Dependency->WeakDependencies, Mgr, Ret, IsEnabled);
291 if (IsEnabled(Dependenc
261 collectStrongDependencies(const ConstCheckerInfoList &Deps, const CheckerManager &Mgr, CheckerInfoSet &Ret, IsEnabledFn IsEnabled) argument
281 collectWeakDependencies(const ConstCheckerInfoList &WeakDeps, const CheckerManager &Mgr, CheckerInfoSet &Ret, IsEnabledFn IsEnabled) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBWatchpoint.i60 IsEnabled ();
H A DSBBreakpointLocation.i49 IsEnabled ();
H A DSBBreakpointName.i51 bool IsEnabled();
H A DSBBreakpoint.i34 location.IsEnabled(),
119 IsEnabled ();
300 enabled = property(IsEnabled, SetEnabled, doc='''A read/write property that configures whether this breakpoint is enabled or not.''')
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBreakpointLocation.h40 bool IsEnabled();
H A DSBWatchpoint.h49 bool IsEnabled();
H A DSBBreakpointName.h50 bool IsEnabled();
H A DSBBreakpoint.h55 bool IsEnabled();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h45 static bool IsEnabled();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp306 if (wp_sp && wp_sp->IsEnabled()) {
322 if (bp_sp && bp_sp->IsEnabled()) {
420 if (wp_sp && wp_sp->IsEnabled()) {
463 if (wp_sp && wp_sp->IsEnabled()) {
496 if (bp_site_sp && bp_site_sp->IsEnabled()) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp71 bool BreakpointLocation::IsEnabled() const { function in class:BreakpointLocation
72 if (!m_owner.IsEnabled())
75 return m_options_up->IsEnabled();
394 if (!IsEnabled())
418 if (IsEnabled()) {
426 if (IsEnabled()) {
631 (m_options_up ? m_options_up->IsEnabled() : m_owner.IsEnabled())
H A DWatchpoint.cpp142 return IsEnabled();
195 IsEnabled() ? "enabled" : "disabled", m_watch_read ? "r" : "",
218 bool Watchpoint::IsEnabled() const { return m_enabled; } function in class:Watchpoint
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBWatchpoint.cpp163 bool SBWatchpoint::IsEnabled() { function in class:SBWatchpoint
164 LLDB_RECORD_METHOD_NO_ARGS(bool, SBWatchpoint, IsEnabled);
170 return watchpoint_sp->IsEnabled();
329 LLDB_REGISTER_METHOD(bool, SBWatchpoint, IsEnabled, ());
H A DSBBreakpointLocation.cpp116 bool SBBreakpointLocation::IsEnabled() { function in class:SBBreakpointLocation
117 LLDB_RECORD_METHOD_NO_ARGS(bool, SBBreakpointLocation, IsEnabled);
123 return loc_sp->IsEnabled();
490 LLDB_REGISTER_METHOD(bool, SBBreakpointLocation, IsEnabled, ());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepOverBreakpoint.cpp124 if (bp_site_sp && bp_site_sp->IsEnabled()) {

Completed in 207 milliseconds

123