Home
last modified time | relevance | path

Searched refs:BreakpointLocationSP (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationList.h60 lldb::BreakpointLocationSP FindByID(lldb::break_id_t breakID) const;
95 lldb::BreakpointLocationSP GetByIndex(size_t i);
106 const lldb::BreakpointLocationSP GetByIndex(size_t i) const;
169 lldb::BreakpointLocationSP Create(const Address &addr,
176 lldb::BreakpointLocationSP AddLocation(const Address &addr,
180 void SwapLocation(lldb::BreakpointLocationSP to_location_sp,
181 lldb::BreakpointLocationSP from_location_sp);
183 bool RemoveLocation(const lldb::BreakpointLocationSP &bp_loc_sp);
191 typedef std::vector<lldb::BreakpointLocationSP> collection;
192 typedef std::map<lldb_private::Address, lldb::BreakpointLocationSP,
[all …]
H A DBreakpointLocationCollection.h33 void Add(const lldb::BreakpointLocationSP &bp_loc_sp);
60 lldb::BreakpointLocationSP FindByIDPair(lldb::break_id_t break_id,
75 const lldb::BreakpointLocationSP
87 lldb::BreakpointLocationSP GetByIndex(size_t i);
98 const lldb::BreakpointLocationSP GetByIndex(size_t i) const;
155 typedef std::vector<lldb::BreakpointLocationSP> collection;
168 typedef AdaptedIterable<collection, lldb::BreakpointLocationSP,
H A DBreakpointSite.h109 void AddOwner(const lldb::BreakpointLocationSP &owner);
128 lldb::BreakpointLocationSP GetOwnerAtIndex(size_t idx);
230 const lldb::BreakpointLocationSP &owner, lldb::addr_t m_addr,
H A DBreakpoint.h126 static lldb::BreakpointLocationSP
245 lldb::BreakpointLocationSP AddLocation(const Address &addr,
256 lldb::BreakpointLocationSP FindLocationByAddress(const Address &addr);
276 lldb::BreakpointLocationSP FindLocationByID(lldb::break_id_t bp_loc_id);
287 lldb::BreakpointLocationSP GetLocationAtIndex(size_t index);
H A DBreakpointLocation.h307 void SwapLocation(lldb::BreakpointLocationSP swap_from);
H A DBreakpointResolver.h212 lldb::BreakpointLocationSP AddLocation(Address loc_addr,
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointLocation.cpp81 BreakpointLocationSP loc_sp = GetSP(); in GetAddress()
94 BreakpointLocationSP loc_sp = GetSP(); in GetLoadAddress()
108 BreakpointLocationSP loc_sp = GetSP(); in SetEnabled()
119 BreakpointLocationSP loc_sp = GetSP(); in IsEnabled()
131 BreakpointLocationSP loc_sp = GetSP(); in GetHitCount()
143 BreakpointLocationSP loc_sp = GetSP(); in GetIgnoreCount()
155 BreakpointLocationSP loc_sp = GetSP(); in SetIgnoreCount()
167 BreakpointLocationSP loc_sp = GetSP(); in SetCondition()
178 BreakpointLocationSP loc_sp = GetSP(); in GetCondition()
191 BreakpointLocationSP loc_sp = GetSP(); in SetAutoContinue()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocationList.cpp28 BreakpointLocationSP
34 BreakpointLocationSP bp_loc_sp( in Create()
44 BreakpointLocationSP bp = FindByID(break_id); in ShouldStop()
68 BreakpointLocationSP
77 return BreakpointLocationSP(); in FindByID()
87 BreakpointLocationSP break_loc = (*pos); in FindInModule()
96 const BreakpointLocationSP
99 BreakpointLocationSP bp_loc_sp; in FindByAddress()
138 BreakpointLocationSP bp_loc_sp; in GetByIndex()
147 BreakpointLocationSP bp_loc_sp; in GetByIndex()
[all …]
H A DBreakpointLocationCollection.cpp26 void BreakpointLocationCollection::Add(const BreakpointLocationSP &bp_loc) { in Add()
28 BreakpointLocationSP old_bp_loc = in Add()
51 bool operator()(const BreakpointLocationSP &bp_loc) const { in operator ()()
79 BreakpointLocationSP
82 BreakpointLocationSP stop_sp; in FindByIDPair()
90 const BreakpointLocationSP BreakpointLocationCollection::FindByIDPair( in FindByIDPair()
92 BreakpointLocationSP stop_sp; in FindByIDPair()
101 BreakpointLocationSP BreakpointLocationCollection::GetByIndex(size_t i) { in GetByIndex()
103 BreakpointLocationSP stop_sp; in GetByIndex()
110 const BreakpointLocationSP
[all …]
H A DBreakpointSite.cpp22 const BreakpointLocationSP &owner, in BreakpointSite()
35 BreakpointLocationSP bp_loc_sp; in ~BreakpointSite()
125 void BreakpointSite::AddOwner(const BreakpointLocationSP &owner) { in AddOwner()
142 BreakpointLocationSP BreakpointSite::GetOwnerAtIndex(size_t index) { in GetOwnerAtIndex()
154 for (BreakpointLocationSP loc_sp : m_owners.BreakpointLocations()) { in BumpHitCounts()
204 for (BreakpointLocationSP loc_sp : m_owners.BreakpointLocations()) { in CopyOwnersList()
H A DBreakpoint.cpp260 BreakpointLocationSP Breakpoint::AddLocation(const Address &addr, in AddLocation()
278 BreakpointLocationSP Breakpoint::GetLocationAtIndex(size_t index) { in GetLocationAtIndex()
514 for (BreakpointLocationSP break_loc_sp : in ModulesChanged()
695 BreakpointLocationSP old_loc_sp = old_break_locs.GetByIndex(0); in ModuleReplaced()
696 BreakpointLocationSP new_loc_sp = new_break_locs.GetByIndex(0); in ModuleReplaced()
767 BreakpointLocationSP old_loc_sp = in ModuleReplaced()
769 BreakpointLocationSP new_loc_sp = in ModuleReplaced()
804 for (BreakpointLocationSP loc_sp : in ModuleReplaced()
817 for (BreakpointLocationSP loc_sp : in ModuleReplaced()
1079 lldb::BreakpointLocationSP
[all …]
H A DBreakpointResolverAddress.cpp142 BreakpointLocationSP bp_loc_sp(AddLocation(m_addr)); in SearchCallback()
151 BreakpointLocationSP loc_sp = breakpoint.GetLocationAtIndex(0); in SearchCallback()
H A DBreakpointResolver.cpp329 BreakpointLocationSP bp_loc_sp(AddLocation(line_start)); in AddLocation()
338 BreakpointLocationSP BreakpointResolver::AddLocation(Address loc_addr, in AddLocation()
H A DBreakpointResolverName.cpp389 BreakpointLocationSP bp_loc_sp(AddLocation(break_addr, &new_location)); in SearchCallback()
H A DBreakpointLocation.cpp662 void BreakpointLocation::SwapLocation(BreakpointLocationSP swap_from) { in SwapLocation()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBreakpointLocation.h89 SBBreakpointLocation(const lldb::BreakpointLocationSP &break_loc_sp);
95 void SetLocation(const lldb::BreakpointLocationSP &break_loc_sp);
96 BreakpointLocationSP GetSP() const;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DLua.h38 lldb::BreakpointLocationSP bp_loc_sp,
H A DLua.cpp31 lldb::BreakpointLocationSP bp_loc_sp, StructuredDataImpl *extra_args_impl);
103 lldb::BreakpointLocationSP bp_loc_sp, in CallBreakpointCallback()
H A DScriptInterpreterLua.cpp274 BreakpointLocationSP bp_loc_sp(breakpoint_sp->FindLocationByID(break_loc_id)); in BreakpointCallbackFunction()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp404 BreakpointLocationSP bp_loc_sp( in DoExecute()
569 BreakpointLocationSP bp_loc_sp( in DoExecute()
650 BreakpointLocationSP bp_loc_sp; in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp111 BreakpointLocationSP bp_loc_sp = bp_site_sp->GetOwnerAtIndex(0); in StoreBPInfo()
365 lldb::BreakpointLocationSP bp_loc_sp = in PerformAction()
397 BreakpointLocationSP loc(site_locations.GetByIndex(j)); in PerformAction()
402 lldb::BreakpointLocationSP bp_loc_sp = site_locations.GetByIndex(j); in PerformAction()
H A DThreadPlanStepRange.cpp361 BreakpointLocationSP bp_loc = in SetNextBranchBreakpoint()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/lua/
H A Dlua-wrapper.swig17 lldb::BreakpointLocationSP bp_loc_sp,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp372 BreakpointLocationSP location = dyld_break->GetLocationAtIndex(0); in SetRendezvousBreakpoint()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h294 typedef std::shared_ptr<lldb_private::BreakpointLocation> BreakpointLocationSP; typedef

12