Searched refs:loc_id (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointID.cpp | 19 BreakpointID::BreakpointID(break_id_t bp_id, break_id_t loc_id) in BreakpointID() argument 20 : m_break_id(bp_id), m_location_id(loc_id) {} in BreakpointID() 56 break_id_t loc_id) { in GetCanonicalReference() argument 59 else if (loc_id == LLDB_INVALID_BREAK_ID) in GetCanonicalReference() 62 s->Printf("%i.%i", bp_id, loc_id); in GetCanonicalReference() 68 break_id_t loc_id = LLDB_INVALID_BREAK_ID; in ParseCanonicalReference() local 79 if (input.consumeInteger(0, loc_id)) in ParseCanonicalReference() 87 return BreakpointID(bp_id, loc_id); in ParseCanonicalReference()
|
| H A D | Breakpoint.cpp | 722 lldb::break_id_t loc_id = bp_loc_sp->GetID(); in ModuleReplaced() local 723 bp_loc_sp->GetAddress().CalculateSymbolContext(&old_sc_map[loc_id]); in ModuleReplaced() 730 lldb::break_id_t loc_id = bp_loc_sp->GetID(); in ModuleReplaced() local 731 bp_loc_sp->GetAddress().CalculateSymbolContext(&new_sc_map[loc_id]); in ModuleReplaced()
|
| H A D | BreakpointLocation.cpp | 32 BreakpointLocation::BreakpointLocation(break_id_t loc_id, Breakpoint &owner, in BreakpointLocation() argument 37 m_owner(owner), m_condition_hash(0), m_loc_id(loc_id), m_hit_counter() { in BreakpointLocation()
|
| /llvm-project-15.0.7/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointID.h | 25 lldb::break_id_t loc_id = LLDB_INVALID_BREAK_ID); 33 void SetID(lldb::break_id_t bp_id, lldb::break_id_t loc_id) { in SetID() argument 35 m_location_id = loc_id; in SetID() 40 void SetBreakpointLocationID(lldb::break_id_t loc_id) { in SetBreakpointLocationID() argument 41 m_location_id = loc_id; in SetBreakpointLocationID()
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | performance.py | 352 loc_id = thread.GetStopReasonDataAtIndex(1) 353 …print("Breakpoint %i.%i hit: %s" % (bp_id, loc_id, thread.process.target.FindBreakpointByID(bp_id)…
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectProcess.cpp | 621 break_id_t loc_id = bkpt_id.GetLocationID(); in DoExecute() local 627 if (loc_id == LLDB_INVALID_BREAK_ID) { in DoExecute() 641 BreakpointLocationSP loc_sp = bp_sp->FindLocationByID(loc_id); in DoExecute()
|