| /freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/ |
| HD | BreakpointIDList.cpp | 46 bool BreakpointIDList::AddBreakpointID(BreakpointID bp_id) { in AddBreakpointID() argument 47 m_breakpoint_ids.push_back(bp_id); in AddBreakpointID() 54 auto bp_id = BreakpointID::ParseCanonicalReference(bp_id_str); in AddBreakpointID() local 55 if (!bp_id.hasValue()) in AddBreakpointID() 58 m_breakpoint_ids.push_back(*bp_id); in AddBreakpointID() 62 bool BreakpointIDList::FindBreakpointID(BreakpointID &bp_id, in FindBreakpointID() argument 66 if (tmp_id.GetBreakpointID() == bp_id.GetBreakpointID() && in FindBreakpointID() 67 tmp_id.GetLocationID() == bp_id.GetLocationID()) { in FindBreakpointID() 78 auto bp_id = BreakpointID::ParseCanonicalReference(bp_id_str); in FindBreakpointID() local 79 if (!bp_id.hasValue()) in FindBreakpointID() [all …]
|
| HD | BreakpointID.cpp | 19 BreakpointID::BreakpointID(break_id_t bp_id, break_id_t loc_id) in BreakpointID() argument 20 : m_break_id(bp_id), m_location_id(loc_id) {} in BreakpointID() 60 void BreakpointID::GetCanonicalReference(Stream *s, break_id_t bp_id, in GetCanonicalReference() argument 62 if (bp_id == LLDB_INVALID_BREAK_ID) in GetCanonicalReference() 65 s->Printf("%i", bp_id); in GetCanonicalReference() 67 s->Printf("%i.%i", bp_id, loc_id); in GetCanonicalReference() 72 break_id_t bp_id; in ParseCanonicalReference() local 79 if (input.consumeInteger(0, bp_id)) in ParseCanonicalReference() 92 return BreakpointID(bp_id, loc_id); in ParseCanonicalReference()
|
| HD | BreakpointSite.cpp | 64 bool BreakpointSite::IsBreakpointAtThisSite(lldb::break_id_t bp_id) { in IsBreakpointAtThisSite() argument 68 if (m_owners.GetByIndex(i)->GetBreakpoint().GetID() == bp_id) in IsBreakpointAtThisSite()
|
| HD | BreakpointLocationCollection.cpp | 34 bool BreakpointLocationCollection::Remove(lldb::break_id_t bp_id, in Remove() argument 37 collection::iterator pos = GetIDPairIterator(bp_id, bp_loc_id); // Predicate in Remove()
|
| HD | BreakpointSiteList.cpp | 142 lldb::break_id_t bp_site_id, lldb::break_id_t bp_id) { in BreakpointSiteContainsBreakpoint() argument 146 return pos->second->IsBreakpointAtThisSite(bp_id); in BreakpointSiteContainsBreakpoint()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| HD | BreakpointID.h | 25 BreakpointID(lldb::break_id_t bp_id = LLDB_INVALID_BREAK_ID, 34 void SetID(lldb::break_id_t bp_id, lldb::break_id_t loc_id) { in SetID() argument 35 m_break_id = bp_id; in SetID() 39 void SetBreakpointID(lldb::break_id_t bp_id) { m_break_id = bp_id; } in SetBreakpointID() argument
|
| HD | BreakpointIDList.h | 42 bool AddBreakpointID(BreakpointID bp_id); 44 bool AddBreakpointID(const char *bp_id); 47 bool FindBreakpointID(BreakpointID &bp_id, size_t *position) const; 49 bool FindBreakpointID(const char *bp_id, size_t *position) const;
|
| HD | BreakpointSiteList.h | 105 lldb::break_id_t bp_id);
|
| HD | BreakpointSite.h | 176 bool IsBreakpointAtThisSite(lldb::break_id_t bp_id);
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
| HD | FreeBSDThread.cpp | 467 lldb::break_id_t bp_id = bp_site->GetID(); in BreakNotify() local 474 SetStopInfo(StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id)); in BreakNotify() 477 SetStopInfo(StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id, in BreakNotify()
|
| HD | ProcessFreeBSD.cpp | 1001 lldb::break_id_t bp_id = iter->second; in IsSoftwareStepBreakpoint() local 1002 BreakpointSP bp = GetTarget().GetBreakpointByID(bp_id); in IsSoftwareStepBreakpoint() 1010 GetTarget().RemoveBreakpointByID(bp_id); in IsSoftwareStepBreakpoint()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/ |
| HD | CommandObjectBreakpoint.cpp | 1674 lldb::break_id_t bp_id = m_bp_id.m_breakpoint.GetUInt64Value(); in DoExecute() local 1675 bp_sp = target.GetBreakpointByID(bp_id); in DoExecute() 1678 bp_id); in DoExecute() 1774 lldb::break_id_t bp_id = in DoExecute() local 1776 BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id); in DoExecute() 1851 lldb::break_id_t bp_id = in DoExecute() local 1853 BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id); in DoExecute() 2069 BreakpointID bp_id = new_bps.GetBreakpointIDAtIndex(i); in DoExecute() local 2071 .FindBreakpointByID(bp_id.GetBreakpointID()) in DoExecute()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/API/ |
| HD | SBBreakpoint.cpp | 805 lldb::break_id_t bp_id = m_break_ids[idx]; in GetBreakpointAtIndex() local 806 return target_sp->GetBreakpointList().FindBreakpointByID(bp_id); in GetBreakpointAtIndex() 837 lldb::break_id_t bp_id = bkpt->GetID(); in AppendIfUnique() local 838 if (find(m_break_ids.begin(), m_break_ids.end(), bp_id) == in AppendIfUnique()
|
| HD | SBTarget.cpp | 1143 bool SBTarget::BreakpointDelete(break_id_t bp_id) { in BreakpointDelete() argument 1145 bp_id); in BreakpointDelete() 1151 result = target_sp->RemoveBreakpointByID(bp_id); in BreakpointDelete() 1157 SBBreakpoint SBTarget::FindBreakpointByID(break_id_t bp_id) { in FindBreakpointByID() argument 1159 (lldb::break_id_t), bp_id); in FindBreakpointByID() 1163 if (target_sp && bp_id != LLDB_INVALID_BREAK_ID) { in FindBreakpointByID() 1165 sb_breakpoint = target_sp->GetBreakpointByID(bp_id); in FindBreakpointByID() 1300 BreakpointID bp_id = bp_ids.GetBreakpointIDAtIndex(i); in BreakpointsCreateFromFile() local 1301 new_bps.AppendByID(bp_id.GetBreakpointID()); in BreakpointsCreateFromFile()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ |
| HD | Target.cpp | 1035 lldb::break_id_t bp_id = cur_bp_id.GetBreakpointID(); in SerializeBreakpointsToFile() local 1037 if (bp_id != LLDB_INVALID_BREAK_ID) { in SerializeBreakpointsToFile() 1040 insert_result = processed_bkpts.insert(bp_id); in SerializeBreakpointsToFile() 1044 Breakpoint *bp = GetBreakpointByID(bp_id).get(); in SerializeBreakpointsToFile() 1050 bp_id); in SerializeBreakpointsToFile()
|