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

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

Completed in 92 milliseconds