Home
last modified time | relevance | path

Searched refs:num_locations (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/
DBreakpointIDList.cpp174 const size_t num_locations = breakpoint_sp->GetNumLocations(); in FindAndReplaceIDRanges() local
175 for (size_t j = 0; j < num_locations; ++j) { in FindAndReplaceIDRanges()
258 const size_t num_locations = breakpoint->GetNumLocations(); in FindAndReplaceIDRanges() local
262 for (size_t k = 0; k < num_locations; ++k) { in FindAndReplaceIDRanges()
274 for (size_t k = 0; k < num_locations; ++k) { in FindAndReplaceIDRanges()
DBreakpoint.cpp575 size_t num_locations = m_locations.GetSize(); in ModulesChanged() local
577 for (loc_idx = 0; loc_idx < num_locations; loc_idx++) { in ModulesChanged()
858 const size_t num_locations = GetNumLocations(); in GetDescription() local
873 if (num_locations > 0) { in GetDescription()
874 s->Printf(", locations = %" PRIu64, (uint64_t)num_locations); in GetDescription()
911 if (num_locations == 0) { in GetDescription()
913 } else if (num_locations == 1 && !show_locations) { in GetDescription()
918 s->Printf("%" PRIu64 " locations.", static_cast<uint64_t>(num_locations)); in GetDescription()
939 for (size_t i = 0; i < num_locations; ++i) { in GetDescription()
DBreakpointLocationList.cpp244 size_t num_locations = m_locations.size(); in RemoveLocation() local
245 for (size_t idx = 0; idx < num_locations; idx++) { in RemoveLocation()
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBBreakpoint.cpp545 const size_t num_locations = bkpt_sp->GetNumLocations(); in GetDescription() local
546 s.Printf(", locations = %" PRIu64, (uint64_t)num_locations); in GetDescription()
802 uint32_t num_locations = 0; in GetNumBreakpointLocationsFromEvent() local
804 num_locations = in GetNumBreakpointLocationsFromEvent()
807 return num_locations; in GetNumBreakpointLocationsFromEvent()
/freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/
DSBBreakpoint.i307num_locations = property(GetNumLocations, None, doc='''A read only property that returns the count…
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
DCommandObjectBreakpoint.cpp2447 const size_t num_locations = breakpoint->GetNumLocations(); in VerifyIDs() local
2448 if (static_cast<size_t>(cur_bp_id.GetLocationID()) > num_locations) { in VerifyIDs()