| /openbsd-src/gnu/llvm/lldb/source/Breakpoint/ |
| H A D | BreakpointID.cpp | 20 BreakpointID::BreakpointID(break_id_t bp_id, break_id_t loc_id) in BreakpointID() function in BreakpointID 23 BreakpointID::~BreakpointID() = default; 32 bool BreakpointID::IsRangeIdentifier(llvm::StringRef str) { in IsRangeIdentifier() 36 bool BreakpointID::IsValidIDExpression(llvm::StringRef str) { in IsValidIDExpression() 37 return BreakpointID::ParseCanonicalReference(str).has_value(); in IsValidIDExpression() 40 llvm::ArrayRef<llvm::StringRef> BreakpointID::GetRangeSpecifiers() { in GetRangeSpecifiers() 44 void BreakpointID::GetDescription(Stream *s, lldb::DescriptionLevel level) { in GetDescription() 56 void BreakpointID::GetCanonicalReference(Stream *s, break_id_t bp_id, in GetCanonicalReference() 66 std::optional<BreakpointID> 67 BreakpointID::ParseCanonicalReference(llvm::StringRef input) { in ParseCanonicalReference() [all …]
|
| H A D | BreakpointIDList.cpp | 30 const BreakpointID & 46 bool BreakpointIDList::AddBreakpointID(BreakpointID bp_id) { in AddBreakpointID() 54 auto bp_id = BreakpointID::ParseCanonicalReference(bp_id_str); in AddBreakpointID() 62 bool BreakpointIDList::FindBreakpointID(BreakpointID &bp_id, in FindBreakpointID() 65 BreakpointID tmp_id = m_breakpoint_ids[i]; in FindBreakpointID() 78 auto bp_id = BreakpointID::ParseCanonicalReference(bp_id_str); in FindBreakpointID() 91 auto bp_id = BreakpointID::ParseCanonicalReference(str); in InsertStringArray() 140 } else if (BreakpointID::StringIsBreakpointName(current_arg, error)) { in FindAndReplaceIDRanges() 148 BreakpointID::IsRangeIdentifier(old_args[i + 1].ref()) && in FindAndReplaceIDRanges() 149 BreakpointID::IsValidIDExpression(current_arg) && in FindAndReplaceIDRanges() [all …]
|
| H A D | CMakeLists.txt | 3 BreakpointID.cpp
|
| H A D | BreakpointList.cpp | 137 if (!BreakpointID::StringIsBreakpointName(llvm::StringRef(name), error)) in FindBreakpointsByName()
|
| H A D | BreakpointLocation.cpp | 495 BreakpointID::GetCanonicalReference(s, m_owner.GetID(), GetID()); in GetDescription()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointIDList.h | 28 typedef std::vector<BreakpointID> BreakpointIDArray; 36 const BreakpointID &GetBreakpointIDAtIndex(size_t index) const; 42 bool AddBreakpointID(BreakpointID bp_id); 47 bool FindBreakpointID(BreakpointID &bp_id, size_t *position) const; 69 BreakpointID m_invalid_id;
|
| H A D | BreakpointID.h | 22 class BreakpointID { 24 BreakpointID(lldb::break_id_t bp_id = LLDB_INVALID_BREAK_ID, 27 virtual ~BreakpointID(); 60 static std::optional<BreakpointID>
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectBreakpointCommand.cpp | 367 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 534 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 614 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 632 BreakpointID::GetCanonicalReference(&id_str, in DoExecute()
|
| H A D | CommandObjectBreakpoint.cpp | 401 if (BreakpointID::StringIsBreakpointName(option_arg, error)) in SetOptionValue() 854 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 945 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 1059 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 1211 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 1503 BreakpointID bp_id(breakpoint_sp->GetID()); in DoExecute() 1525 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 1578 if (BreakpointID::StringIsBreakpointName(option_arg, error) && in SetOptionValue() 1732 if (!BreakpointID::StringIsBreakpointName(entry.ref(), error)) { in DoExecute() 2170 if (!BreakpointID::StringIsBreakpointName(llvm::StringRef(option_arg), in SetOptionValue() [all …]
|
| H A D | CommandObjectProcess.cpp | 607 std::vector<BreakpointID> locs_disabled; in DoExecute() 620 BreakpointID bkpt_id = run_to_bkpt_ids.GetBreakpointIDAtIndex(idx); in DoExecute() 695 BreakpointID tmp_id(bp_id, LLDB_INVALID_BREAK_ID); in DoExecute() 749 for (const BreakpointID &bkpt_id : locs_disabled) { in DoExecute()
|
| H A D | Options.td | 241 Arg<"BreakpointID">, Desc<"Specify a breakpoint ID to use.">;
|
| /openbsd-src/gnu/usr.bin/clang/liblldbBreakpoint/ |
| H A D | Makefile | 10 BreakpointID.cpp \
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Breakpoint/ |
| H A D | BUILD.gn | 16 "BreakpointID.cpp",
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/ |
| H A D | lldb-forward.h | 32 class BreakpointID; variable
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBBreakpoint.cpp | 859 bp_list.AddBreakpointID(BreakpointID(id)); in CopyToBreakpointIDList()
|
| H A D | SBTarget.cpp | 1228 BreakpointID bp_id = bp_ids.GetBreakpointIDAtIndex(i); in BreakpointsCreateFromFile()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Target.cpp | 688 void Target::AddNameToBreakpoint(BreakpointID &id, const char *name, in AddNameToBreakpoint() 721 BreakpointID::StringIsBreakpointName(name.GetStringRef(), error); in FindBreakpointName() 1078 BreakpointID cur_bp_id = bp_ids.GetBreakpointIDAtIndex(i); in SerializeBreakpointsToFile() 1164 new_bps.AddBreakpointID(BreakpointID(bkpt_sp->GetID())); in CreateBreakpointsFromFile()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | Target.h | 743 void AddNameToBreakpoint(BreakpointID &id, const char *name, Status &error);
|
| /openbsd-src/gnu/llvm/clang/docs/tools/ |
| H A D | clang-formatted-files.txt | 3653 lldb/include/lldb/Breakpoint/BreakpointID.h
|