| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointID.cpp | 19 BreakpointID::BreakpointID(break_id_t bp_id, break_id_t loc_id) in BreakpointID() function in BreakpointID 22 BreakpointID::~BreakpointID() = default; 31 bool BreakpointID::IsRangeIdentifier(llvm::StringRef str) { in IsRangeIdentifier() 35 bool BreakpointID::IsValidIDExpression(llvm::StringRef str) { in IsValidIDExpression() 36 return BreakpointID::ParseCanonicalReference(str).has_value(); in IsValidIDExpression() 39 llvm::ArrayRef<llvm::StringRef> BreakpointID::GetRangeSpecifiers() { in GetRangeSpecifiers() 43 void BreakpointID::GetDescription(Stream *s, lldb::DescriptionLevel level) { in GetDescription() 55 void BreakpointID::GetCanonicalReference(Stream *s, break_id_t bp_id, in GetCanonicalReference() 65 llvm::Optional<BreakpointID> 66 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() 91 auto bp_id = BreakpointID::ParseCanonicalReference(str); in InsertStringArray() 161 if (BreakpointID::IsValidIDExpression(bp_id_str) && in FindAndReplaceIDRanges() 179 BreakpointID::GetCanonicalReference( in FindAndReplaceIDRanges() 312 BreakpointID::GetCanonicalReference( in FindAndReplaceIDRanges() 335 if (BreakpointID::IsValidIDExpression(from) && in SplitIDRangeExpression() [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()
|
| /llvm-project-15.0.7/lldb/unittests/Breakpoint/ |
| H A D | BreakpointIDTest.cpp | 21 EXPECT_FALSE(BreakpointID::StringIsBreakpointName("1breakpoint", E)); in TEST() 22 EXPECT_FALSE(BreakpointID::StringIsBreakpointName("-", E)); in TEST() 23 EXPECT_FALSE(BreakpointID::StringIsBreakpointName("", E)); in TEST() 24 EXPECT_FALSE(BreakpointID::StringIsBreakpointName("3.4", E)); in TEST() 26 EXPECT_TRUE(BreakpointID::StringIsBreakpointName("_", E)); in TEST() 27 EXPECT_TRUE(BreakpointID::StringIsBreakpointName("a123", E)); in TEST() 28 EXPECT_TRUE(BreakpointID::StringIsBreakpointName("test", E)); in TEST()
|
| /llvm-project-15.0.7/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 llvm::Optional<BreakpointID>
|
| /llvm-project-15.0.7/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 | 400 if (BreakpointID::StringIsBreakpointName(option_arg, error)) in SetOptionValue() 853 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 944 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 1502 BreakpointID bp_id(breakpoint_sp->GetID()); in DoExecute() 1524 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i); in DoExecute() 1577 if (BreakpointID::StringIsBreakpointName(option_arg, error) && in SetOptionValue() 1731 if (!BreakpointID::StringIsBreakpointName(entry.ref(), error)) { in DoExecute() 2298 BreakpointID bp_id = new_bps.GetBreakpointIDAtIndex(i); in DoExecute() 2499 valid_ids->AddBreakpointID(BreakpointID( in VerifyIDs() 2533 BreakpointID cur_bp_id = valid_ids->GetBreakpointIDAtIndex(i); in VerifyIDs() [all …]
|
| H A D | CommandObjectProcess.cpp | 606 std::vector<BreakpointID> locs_disabled; in DoExecute() 619 BreakpointID bkpt_id = run_to_bkpt_ids.GetBreakpointIDAtIndex(idx); in DoExecute() 694 BreakpointID tmp_id(bp_id, LLDB_INVALID_BREAK_ID); in DoExecute() 748 for (const BreakpointID &bkpt_id : locs_disabled) { in DoExecute()
|
| H A D | Options.td | 241 Arg<"BreakpointID">, Desc<"Specify a breakpoint ID to use.">;
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Breakpoint/ |
| H A D | BUILD.gn | 16 "BreakpointID.cpp",
|
| /llvm-project-15.0.7/lldb/include/lldb/ |
| H A D | lldb-forward.h | 32 class BreakpointID; variable
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | Target.cpp | 684 void Target::AddNameToBreakpoint(BreakpointID &id, const char *name, in AddNameToBreakpoint() 716 BreakpointID::StringIsBreakpointName(name.GetStringRef(), error); in FindBreakpointName() 1068 BreakpointID cur_bp_id = bp_ids.GetBreakpointIDAtIndex(i); in SerializeBreakpointsToFile() 1154 new_bps.AddBreakpointID(BreakpointID(bkpt_sp->GetID())); in CreateBreakpointsFromFile()
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | Target.h | 740 void AddNameToBreakpoint(BreakpointID &id, const char *name, Status &error);
|
| /llvm-project-15.0.7/clang/docs/tools/ |
| H A D | clang-formatted-files.txt | 3658 lldb/include/lldb/Breakpoint/BreakpointID.h
|