| /openbsd/src/gnu/llvm/lldb/source/Breakpoint/ |
| D | 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) 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) in FindBreakpointID() [all …]
|
| D | BreakpointID.cpp | 20 BreakpointID::BreakpointID(break_id_t bp_id, break_id_t loc_id) in BreakpointID() argument 21 : m_break_id(bp_id), m_location_id(loc_id) {} in BreakpointID() 56 void BreakpointID::GetCanonicalReference(Stream *s, break_id_t bp_id, in GetCanonicalReference() argument 58 if (bp_id == LLDB_INVALID_BREAK_ID) in GetCanonicalReference() 61 s->Printf("%i", bp_id); in GetCanonicalReference() 63 s->Printf("%i.%i", bp_id, loc_id); in GetCanonicalReference() 68 break_id_t bp_id; in ParseCanonicalReference() local 75 if (input.consumeInteger(0, bp_id)) in ParseCanonicalReference() 88 return BreakpointID(bp_id, loc_id); in ParseCanonicalReference()
|
| D | BreakpointLocationCollection.cpp | 33 bool BreakpointLocationCollection::Remove(lldb::break_id_t bp_id, in Remove() argument 36 collection::iterator pos = GetIDPairIterator(bp_id, bp_loc_id); // Predicate in Remove()
|
| D | 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()
|
| D | 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()
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Breakpoint/ |
| D | BreakpointID.h | 24 BreakpointID(lldb::break_id_t bp_id = LLDB_INVALID_BREAK_ID, 33 void SetID(lldb::break_id_t bp_id, lldb::break_id_t loc_id) { in SetID() argument 34 m_break_id = bp_id; in SetID() 38 void SetBreakpointID(lldb::break_id_t bp_id) { m_break_id = bp_id; } in SetBreakpointID() argument
|
| D | 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;
|
| D | BreakpointSiteList.h | 105 lldb::break_id_t bp_id);
|
| D | BreakpointSite.h | 176 bool IsBreakpointAtThisSite(lldb::break_id_t bp_id);
|
| /openbsd/src/gnu/llvm/lldb/examples/python/ |
| D | performance.py | 244 bp_id = thread.GetStopReasonDataAtIndex(0) 247 print("breakpoint id = %d.%d" % (bp_id, bp_loc_id)) 349 bp_id = thread.GetStopReasonDataAtIndex(0) 351 …print("Breakpoint %i.%i hit: %s" % (bp_id, loc_id, thread.process.target.FindBreakpointByID(bp_id)…
|
| /openbsd/src/gnu/llvm/lldb/source/Commands/ |
| D | CommandObjectProcess.cpp | 621 break_id_t bp_id = bkpt_id.GetBreakpointID(); in DoExecute() local 624 = bkpt_list.FindBreakpointByID(bp_id); in DoExecute() 670 for (break_id_t bp_id : bkpts_with_locs_seen) { in DoExecute() local 671 if (bkpts_seen.count(bp_id)) { in DoExecute() 673 "one of its locations: {0}", bp_id); in DoExecute() 680 break_id_t bp_id = bp_sp->GetID(); in DoExecute() local 684 if (!bkpts_with_locs_seen.count(bp_id)) { in DoExecute() 685 if (!bkpts_seen.count(bp_id) && bp_sp->IsEnabled()) { in DoExecute() 686 bkpts_disabled.push_back(bp_id); in DoExecute() 695 BreakpointID tmp_id(bp_id, LLDB_INVALID_BREAK_ID); in DoExecute() [all …]
|
| D | CommandObjectBreakpoint.cpp | 1503 BreakpointID bp_id(breakpoint_sp->GetID()); in DoExecute() local 1505 if (!excluded_bp_ids.FindBreakpointID(bp_id, &pos)) in DoExecute() 1742 lldb::break_id_t bp_id = m_bp_id.m_breakpoint.GetUInt64Value(); in DoExecute() local 1743 bp_sp = target.GetBreakpointByID(bp_id); in DoExecute() 1746 bp_id); in DoExecute() 1846 lldb::break_id_t bp_id = in DoExecute() local 1848 BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id); in DoExecute() 1928 lldb::break_id_t bp_id = in DoExecute() local 1930 BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id); in DoExecute() 2299 BreakpointID bp_id = new_bps.GetBreakpointIDAtIndex(i); in DoExecute() local [all …]
|
| /openbsd/src/gnu/llvm/lldb/tools/lldb-vscode/ |
| D | VSCode.cpp | 79 VSCode::GetExceptionBreakpoint(const lldb::break_id_t bp_id) { in GetExceptionBreakpoint() argument 81 if (bp.bp.GetID() == bp_id) in GetExceptionBreakpoint() 357 lldb::break_id_t bp_id = thread.GetStopReasonDataAtIndex(i); in GetExceptionBPFromStopReason() local 358 exc_bp = GetExceptionBreakpoint(bp_id); in GetExceptionBPFromStopReason()
|
| D | VSCode.h | 162 ExceptionBreakpoint *GetExceptionBreakpoint(const lldb::break_id_t bp_id);
|
| D | JSONUtils.cpp | 894 uint64_t bp_id = thread.GetStopReasonDataAtIndex(0); in CreateThreadStopped() local 897 bp_id, bp_loc_id); in CreateThreadStopped()
|
| /openbsd/src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
| D | lldbinline.py | 155 for bp_id in self._get_breakpoint_ids(thread): 156 parser.handle_breakpoint(self, bp_id)
|
| /openbsd/src/gnu/llvm/lldb/source/API/ |
| D | 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 (!llvm::is_contained(m_break_ids, bp_id)) in AppendIfUnique()
|
| D | SBTarget.cpp | 1083 bool SBTarget::BreakpointDelete(break_id_t bp_id) { in BreakpointDelete() argument 1084 LLDB_INSTRUMENT_VA(this, bp_id); in BreakpointDelete() 1090 result = target_sp->RemoveBreakpointByID(bp_id); in BreakpointDelete() 1096 SBBreakpoint SBTarget::FindBreakpointByID(break_id_t bp_id) { in FindBreakpointByID() argument 1097 LLDB_INSTRUMENT_VA(this, bp_id); in FindBreakpointByID() 1101 if (target_sp && bp_id != LLDB_INVALID_BREAK_ID) { in FindBreakpointByID() 1103 sb_breakpoint = target_sp->GetBreakpointByID(bp_id); in FindBreakpointByID() 1228 BreakpointID bp_id = bp_ids.GetBreakpointIDAtIndex(i); in BreakpointsCreateFromFile() local 1229 new_bps.AppendByID(bp_id.GetBreakpointID()); in BreakpointsCreateFromFile()
|
| /openbsd/src/gnu/llvm/lldb/source/Target/ |
| D | Target.cpp | 1079 lldb::break_id_t bp_id = cur_bp_id.GetBreakpointID(); in SerializeBreakpointsToFile() local 1081 if (bp_id != LLDB_INVALID_BREAK_ID) { in SerializeBreakpointsToFile() 1084 insert_result = processed_bkpts.insert(bp_id); in SerializeBreakpointsToFile() 1088 Breakpoint *bp = GetBreakpointByID(bp_id).get(); in SerializeBreakpointsToFile() 1094 bp_id); in SerializeBreakpointsToFile()
|