Home
last modified time | relevance | path

Searched refs:GetLocationID (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp371 if (cur_bp_id.GetLocationID() == LLDB_INVALID_BREAK_ID) { in DoExecute()
376 bp->FindLocationByID(cur_bp_id.GetLocationID())); in DoExecute()
538 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
540 bp->FindLocationByID(cur_bp_id.GetLocationID())); in DoExecute()
546 cur_bp_id.GetLocationID()); in DoExecute()
621 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
622 bp_loc_sp = bp->FindLocationByID(cur_bp_id.GetLocationID()); in DoExecute()
626 cur_bp_id.GetLocationID()); in DoExecute()
634 cur_bp_id.GetLocationID()); in DoExecute()
H A DCommandObjectBreakpoint.cpp858 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
860 bp->FindLocationByID(cur_bp_id.GetLocationID()).get(); in DoExecute()
949 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
951 breakpoint->FindLocationByID(cur_bp_id.GetLocationID()).get(); in DoExecute()
1063 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
1065 breakpoint->FindLocationByID(cur_bp_id.GetLocationID()).get(); in DoExecute()
1527 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
1531 breakpoint->FindLocationByID(cur_bp_id.GetLocationID()).get(); in DoExecute()
2538 if (static_cast<size_t>(cur_bp_id.GetLocationID()) > num_locations) { in VerifyIDs()
2541 &id_str, cur_bp_id.GetBreakpointID(), cur_bp_id.GetLocationID()); in VerifyIDs()
H A DCommandObjectProcess.cpp621 break_id_t loc_id = bkpt_id.GetLocationID(); in DoExecute()
647 if (bkpt_id.GetLocationID() == LLDB_INVALID_BREAK_ID) in DoExecute()
753 = bp_sp->FindLocationByID(bkpt_id.GetLocationID()); in DoExecute()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointIDList.cpp67 tmp_id.GetLocationID() == bp_id.GetLocationID()) { in FindBreakpointID()
211 break_id_t start_loc_id = start_bp->GetLocationID(); in FindAndReplaceIDRanges()
213 break_id_t end_loc_id = end_bp->GetLocationID(); in FindAndReplaceIDRanges()
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpointID.h31 lldb::break_id_t GetLocationID() const { return m_location_id; } in GetLocationID() function