Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp355 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() local
356 if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
358 target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get(); in DoExecute()
359 if (cur_bp_id.GetLocationID() == LLDB_INVALID_BREAK_ID) { in DoExecute()
364 bp->FindLocationByID(cur_bp_id.GetLocationID())); in DoExecute()
508 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() local
509 if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
511 target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get(); in DoExecute()
512 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
514 bp->FindLocationByID(cur_bp_id.GetLocationID())); in DoExecute()
[all …]
H A DCommandObjectBreakpoint.cpp856 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() local
858 if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
860 target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get(); in DoExecute()
861 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
863 bp->FindLocationByID(cur_bp_id.GetLocationID()).get(); in DoExecute()
939 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() local
941 if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
943 target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get(); in DoExecute()
944 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) { in DoExecute()
946 breakpoint->FindLocationByID(cur_bp_id.GetLocationID()).get(); in DoExecute()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointIDList.cpp206 break_id_t cur_bp_id = breakpoint->GetID(); in FindAndReplaceIDRanges() local
208 if ((cur_bp_id < start_bp_id) || (cur_bp_id > end_bp_id)) in FindAndReplaceIDRanges()
213 if ((cur_bp_id == start_bp_id) && in FindAndReplaceIDRanges()
220 BreakpointID::GetCanonicalReference(&canonical_id_str, cur_bp_id, in FindAndReplaceIDRanges()
225 } else if ((cur_bp_id == end_bp_id) && in FindAndReplaceIDRanges()
231 BreakpointID::GetCanonicalReference(&canonical_id_str, cur_bp_id, in FindAndReplaceIDRanges()
238 BreakpointID::GetCanonicalReference(&canonical_id_str, cur_bp_id, in FindAndReplaceIDRanges()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp1128 BreakpointID cur_bp_id = bp_ids.GetBreakpointIDAtIndex(i); in SerializeBreakpointsToFile() local
1129 lldb::break_id_t bp_id = cur_bp_id.GetBreakpointID(); in SerializeBreakpointsToFile()