reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h
  272     m_set_flags.Set(eEnabled);
  283     m_set_flags.Set(eAutoContinue);
  294     m_set_flags.Set(eOneShot); 
  303     m_set_flags.Set(eIgnoreCount);
  348     return m_set_flags.AnySet(eAllOptions);
  355     return m_set_flags.Test(kind);
tools/lldb/source/Breakpoint/BreakpointOptions.cpp
  130     m_set_flags.Set(~((Flags::ValueType)0));
  141     m_set_flags.Set(eEnabled | eIgnoreCount | eOneShot 
  155       m_auto_continue(rhs.m_auto_continue), m_set_flags(rhs.m_set_flags) {
  177   m_set_flags = rhs.m_set_flags;
  177   m_set_flags = rhs.m_set_flags;
  183   if (incoming.m_set_flags.Test(eEnabled))
  186     m_set_flags.Set(eEnabled);
  188   if (incoming.m_set_flags.Test(eOneShot))
  191     m_set_flags.Set(eOneShot);
  193   if (incoming.m_set_flags.Test(eCallback))
  199     m_set_flags.Set(eCallback);
  201   if (incoming.m_set_flags.Test(eIgnoreCount))
  204     m_set_flags.Set(eIgnoreCount);
  206   if (incoming.m_set_flags.Test(eCondition))
  212       m_set_flags.Clear(eCondition);
  216       m_set_flags.Set(eCondition);
  219   if (incoming.m_set_flags.Test(eAutoContinue))
  222     m_set_flags.Set(eAutoContinue);
  224   if (incoming.m_set_flags.Test(eThreadSpec) && incoming.m_thread_spec_up) {
  229     m_set_flags.Set(eThreadSpec);
  365   if (m_set_flags.Test(eEnabled))
  368   if (m_set_flags.Test(eOneShot))
  371   if (m_set_flags.Test(eAutoContinue))
  374   if (m_set_flags.Test(eIgnoreCount))
  377   if (m_set_flags.Test(eCondition))
  381   if (m_set_flags.Test(eCallback) && m_baton_is_command_baton) {
  391   if (m_set_flags.Test(eThreadSpec) && m_thread_spec_up) {
  418   m_set_flags.Set(eCallback);
  429   m_set_flags.Set(eCallback);
  437   m_set_flags.Clear(eCallback);
  484     m_set_flags.Clear(eCondition);
  487     m_set_flags.Set(eCondition);
  511     m_set_flags.Set(eThreadSpec);
  520   m_set_flags.Set(eThreadSpec);
  526   m_set_flags.Set(eThreadSpec);
  617   m_set_flags.Set(eCallback);
  663   m_set_flags.Clear();
tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
   74       m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition);