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

Declarations

tools/lldb/include/lldb/Breakpoint/Stoppoint.h
   31   lldb::break_id_t GetID() const;

References

tools/lldb/source/API/SBBreakpoint.cpp
   90     break_id = bkpt_sp->GetID();
  105   else if (bkpt_sp->GetTarget().GetBreakpointByID(bkpt_sp->GetID()))
  531     s.Printf("SBBreakpoint: id = %i, ", bkpt_sp->GetID());
  827     m_break_ids.push_back(bkpt->GetID());
  837     lldb::break_id_t bp_id = bkpt->GetID();
  842     m_break_ids.push_back(bkpt->GetID());
tools/lldb/source/API/SBTarget.cpp
 1186       bkpts.AppendByID(bkpt_sp->GetID());
tools/lldb/source/API/SBThread.cpp
  245                 return bp_loc_sp->GetBreakpoint().GetID();
tools/lldb/source/Breakpoint/Breakpoint.cpp
  444   return m_options_up->InvokeCallback(context, GetID(), bp_loc_id);
  556                       break_loc_sp->GetID(), GetID());
  782                   old_break_locs.FindByIDPair(GetID(), old_id_vec[idx]);
  784                   new_break_locs.FindByIDPair(GetID(), new_id_vec[idx]);
  792                   old_break_locs.FindByIDPair(GetID(), old_id));
  797                   new_break_locs.FindByIDPair(GetID(), new_id));
  879     s->Printf("%i: ", GetID());
  924     s->Printf("Breakpoint %i: ", GetID());
tools/lldb/source/Breakpoint/BreakpointIDList.cpp
  259       break_id_t cur_bp_id = breakpoint->GetID();
  319                 &canonical_id_str, bkpt_sp->GetID(), LLDB_INVALID_BREAK_ID);
tools/lldb/source/Breakpoint/BreakpointList.cpp
   40   return bp_sp->GetID();
   48       [&](const BreakpointSP &bp) { return bp->GetID() == break_id; });
  112       [&](const BreakpointSP &bp) { return bp->GetID() == break_id; });
  119       [&](const BreakpointSP &bp) { return bp->GetID() == break_id; });
tools/lldb/source/Breakpoint/BreakpointLocation.cpp
  194     return m_options_up->InvokeCallback(context, m_owner.GetID(), GetID());
  475       process_sp->RemoveOwnerFromBreakpointSite(GetBreakpoint().GetID(),
  478       m_bp_site_sp->RemoveOwner(GetBreakpoint().GetID(), GetID());
  495     BreakpointID::GetCanonicalReference(s, m_owner.GetID(), GetID());
tools/lldb/source/Breakpoint/BreakpointLocationCollection.cpp
   29       FindByIDPair(bp_loc->GetBreakpoint().GetID(), bp_loc->GetID());
   52     return m_break_id == bp_loc->GetBreakpoint().GetID() &&
tools/lldb/source/Breakpoint/BreakpointSite.cpp
   68     if (m_owners.GetByIndex(i)->GetBreakpoint().GetID() == bp_id)
tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
  693         target.RemoveBreakpointByID(bp_sp->GetID());
  709         target.RemoveBreakpointByID(bp_sp->GetID());
  729             target.RemoveBreakpointByID(bp_sp->GetID());
 1315       BreakIDs.push_back(breakpoints.GetBreakpointAtIndex(i)->GetID());
 1334             target.RemoveBreakpointByID(bp->GetID());
 2300           target->GetLastCreatedBreakpoint()->GetID(), LLDB_INVALID_BREAK_ID));
tools/lldb/source/Core/Debugger.cpp
 1251                           breakpoint->GetID());
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
 1484     m_break_id = bp->GetID();
tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
  294     m_dyld_bid = dyld_break->GetID();
  300                .GetID() == m_dyld_bid);
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
  363         m_break_id = breakpoint->GetID();
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
 1021         m_break_id = dyld_break->GetID();
tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
  364     target.RemoveBreakpointByID(dyld_break->GetID());
  377   m_dyld_bid = dyld_break->GetID();
tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
  311   SetBreakpointID(breakpoint->GetID());
tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
  221   SetBreakpointID(breakpoint->GetID());
tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
  922   SetBreakpointID(breakpoint->GetID());
tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
  286   SetBreakpointID(breakpoint->GetID());
tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  212   m_jit_break_id = bp->GetID();
tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
  531       break_site_id, m_cxx_exception_bp_sp->GetID());
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
  434       break_site_id, m_objc_exception_bp_sp->GetID());
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
  496               m_trampolines_changed_bp_id = trampolines_changed_bp_sp->GetID();
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
 3716   m_conditional_breaks[bp->GetID()] = std::unique_ptr<RSCoordinate>(baton);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 3961               m_thread_create_bp_sp->GetID());
tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
 1652   m_breakpoint_id = breakpoint_sp->GetID();
tools/lldb/source/Target/Process.cpp
 1656             owner->GetBreakpoint().GetID(), owner->GetID(),
 1694                 load_addr, owner->GetBreakpoint().GetID(), owner->GetID(),
tools/lldb/source/Target/StopInfo.cpp
  113             m_break_id = bp_loc_sp->GetBreakpoint().GetID();
  419                     bp_loc_sp->GetBreakpoint().GetID());
  513                   bp_loc_sp->GetBreakpoint().GetID());
tools/lldb/source/Target/Target.cpp
  918         if (m_last_created_breakpoint->GetID() == break_id)
 1114     new_bps.AddBreakpointID(BreakpointID(bkpt_sp->GetID()));
tools/lldb/source/Target/ThreadPlanCallFunction.cpp
  299                   bp.GetID());
tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
   71       m_break_ids[i] = breakpoint->GetID();
tools/lldb/source/Target/ThreadPlanStepOut.cpp
  137       m_return_bp_id = return_bp->GetID();
tools/lldb/source/Target/ThreadPlanStepRange.cpp
  291               m_next_branch_bp_sp->GetID());
  292     GetTarget().RemoveBreakpointByID(m_next_branch_bp_sp->GetID());
  364                     m_next_branch_bp_sp->GetID(), bp_site_id,
  391   else if (!bp_site_sp->IsBreakpointAtThisSite(m_next_branch_bp_sp->GetID()))
tools/lldb/source/Target/ThreadPlanStepThrough.cpp
   62         m_backstop_bkpt_id = return_bp->GetID();
tools/lldb/source/Target/ThreadPlanStepUntil.cpp
   58         m_return_bp_id = return_bp->GetID();
   71         m_until_points[address_list[i]] = until_bp->GetID();
tools/lldb/tools/lldb-test/lldb-test.cpp
  313     P.formatLine("Breakpoint ID {0}:", BP->GetID());