Home
last modified time | relevance | path

Searched refs:cur_bp_id (Results 1 – 3 of 3) sorted by relevance

/external/lldb/source/Commands/
DCommandObjectBreakpointCommand.cpp552 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute() local
553 if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) in DoExecute()
555 Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); in DoExecute()
557 if (cur_bp_id.GetLocationID() == LLDB_INVALID_BREAK_ID) in DoExecute()
564 … BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute()
727 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute() local
728 if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) in DoExecute()
730 Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); in DoExecute()
731 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) in DoExecute()
733 … BreakpointLocationSP bp_loc_sp (bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute()
[all …]
DCommandObjectBreakpoint.cpp922 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute() local
924 if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) in DoExecute()
926 Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); in DoExecute()
927 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) in DoExecute()
929 … BreakpointLocation *location = bp->FindLocationByID (cur_bp_id.GetLocationID()).get(); in DoExecute()
1074 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute() local
1076 if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) in DoExecute()
1078 … Breakpoint *breakpoint = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); in DoExecute()
1079 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) in DoExecute()
1081 … BreakpointLocation *location = breakpoint->FindLocationByID (cur_bp_id.GetLocationID()).get(); in DoExecute()
[all …]
/external/lldb/source/Breakpoint/
DBreakpointIDList.cpp298 break_id_t cur_bp_id = breakpoint->GetID(); in FindAndReplaceIDRanges() local
300 if ((cur_bp_id < start_bp_id) || (cur_bp_id > end_bp_id)) in FindAndReplaceIDRanges()
305 if ((cur_bp_id == start_bp_id) && (start_loc_id != LLDB_INVALID_BREAK_ID)) in FindAndReplaceIDRanges()
313 … BreakpointID::GetCanonicalReference (&canonical_id_str, cur_bp_id, bp_loc->GetID()); in FindAndReplaceIDRanges()
318 else if ((cur_bp_id == end_bp_id) && (end_loc_id != LLDB_INVALID_BREAK_ID)) in FindAndReplaceIDRanges()
326 … BreakpointID::GetCanonicalReference (&canonical_id_str, cur_bp_id, bp_loc->GetID()); in FindAndReplaceIDRanges()
334 … BreakpointID::GetCanonicalReference (&canonical_id_str, cur_bp_id, LLDB_INVALID_BREAK_ID); in FindAndReplaceIDRanges()