Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointIDList.cpp128 const size_t num_locations = breakpoint_sp->GetNumLocations(); in FindAndReplaceIDRanges() local
129 for (size_t j = 0; j < num_locations; ++j) { in FindAndReplaceIDRanges()
211 const size_t num_locations = breakpoint->GetNumLocations(); in FindAndReplaceIDRanges() local
215 for (size_t k = 0; k < num_locations; ++k) { in FindAndReplaceIDRanges()
227 for (size_t k = 0; k < num_locations; ++k) { in FindAndReplaceIDRanges()
H A DBreakpoint.cpp569 size_t num_locations = m_locations.GetSize(); in ModulesChanged() local
571 for (loc_idx = 0; loc_idx < num_locations; loc_idx++) { in ModulesChanged()
848 const size_t num_locations = GetNumLocations(); in GetDescription() local
863 if (num_locations > 0) { in GetDescription()
864 s->Printf(", locations = %" PRIu64, (uint64_t)num_locations); in GetDescription()
901 if (num_locations == 0) { in GetDescription()
903 } else if (num_locations == 1 && !show_locations) { in GetDescription()
908 s->Printf("%" PRIu64 " locations.", static_cast<uint64_t>(num_locations)); in GetDescription()
929 for (size_t i = 0; i < num_locations; ++i) { in GetDescription()
H A DBreakpointLocationList.cpp249 size_t num_locations = m_locations.size(); in RemoveLocation() local
250 for (size_t idx = 0; idx < num_locations; idx++) { in RemoveLocation()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp527 const size_t num_locations = bkpt_sp->GetNumLocations(); in GetDescription() local
528 s.Printf(", locations = %" PRIu64, (uint64_t)num_locations); in GetDescription()
766 uint32_t num_locations = 0; in GetNumBreakpointLocationsFromEvent() local
768 num_locations = in GetNumBreakpointLocationsFromEvent()
771 return num_locations; in GetNumBreakpointLocationsFromEvent()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBBreakpointExtensions.i52num_locations = property(GetNumLocations, None, doc='''A read only property that returns the count…
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectProcess.cpp561 size_t num_locations = bp_sp->GetNumLocations(); in DoExecute() local
562 for (size_t loc_idx = 0; loc_idx < num_locations; loc_idx++) { in DoExecute()
624 size_t num_locations = bp_sp->GetNumLocations(); in DoExecute() local
626 for (size_t loc_idx = 0; loc_idx < num_locations; loc_idx++) { in DoExecute()
H A DCommandObjectBreakpoint.cpp2473 const size_t num_locations = breakpoint->GetNumLocations(); in VerifyIDs() local
2474 if (static_cast<size_t>(cur_bp_id.GetLocationID()) > num_locations) { in VerifyIDs()