Home
last modified time | relevance | path

Searched refs:BreakpointID (Results 1 – 10 of 10) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/Breakpoint/
HDBreakpointIDList.cpp40 BreakpointID &
66 BreakpointIDList::AddBreakpointID (BreakpointID bp_id) in AddBreakpointID()
76 BreakpointID temp_bp_id; in AddBreakpointID()
80 bool success = BreakpointID::ParseCanonicalReference (bp_id_str, &bp_id, &loc_id); in AddBreakpointID()
92 BreakpointIDList::FindBreakpointID (BreakpointID &bp_id, size_t *position) in FindBreakpointID()
96 BreakpointID tmp_id = m_breakpoint_ids[i]; in FindBreakpointID()
111 BreakpointID temp_bp_id; in FindBreakpointID()
115 if (BreakpointID::ParseCanonicalReference (bp_id_str, &bp_id, &loc_id)) in FindBreakpointID()
135 if (BreakpointID::ParseCanonicalReference (string_array[i], &bp_id, &loc_id)) in InsertStringArray()
139 BreakpointID temp_bp_id(bp_id, loc_id); in InsertStringArray()
[all …]
HDBreakpointID.cpp26 BreakpointID::BreakpointID (break_id_t bp_id, break_id_t loc_id) : in BreakpointID() function in BreakpointID
32 BreakpointID::~BreakpointID () in ~BreakpointID()
36 const char *BreakpointID::g_range_specifiers[] = { "-", "to", "To", "TO", NULL };
43 BreakpointID::IsRangeIdentifier (const char *str) in IsRangeIdentifier()
59 BreakpointID::IsValidIDExpression (const char *str) in IsValidIDExpression()
63 BreakpointID::ParseCanonicalReference (str, &bp_id, &loc_id); in IsValidIDExpression()
72 BreakpointID::GetDescription (Stream *s, lldb::DescriptionLevel level) in GetDescription()
86 BreakpointID::GetCanonicalReference (Stream *s, break_id_t bp_id, break_id_t loc_id) in GetCanonicalReference()
97 BreakpointID::ParseCanonicalReference (const char *input, break_id_t *break_id_ptr, break_id_t *bre… in ParseCanonicalReference()
126 BreakpointID::StringIsBreakpointName(const char *name, Error &error) in StringIsBreakpointName()
HDBreakpointLocation.cpp571 BreakpointID::GetCanonicalReference(s, m_owner.GetID(), GetID()); in GetDescription()
HDBreakpoint.cpp792 if (!BreakpointID::StringIsBreakpointName(new_name, error)) in AddName()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
HDBreakpointIDList.h33 typedef std::vector<BreakpointID> BreakpointIDArray;
43 BreakpointID &
53 AddBreakpointID (BreakpointID bp_id);
59 FindBreakpointID (BreakpointID &bp_id, size_t *position);
75 BreakpointID m_invalid_id;
HDBreakpointID.h26 class BreakpointID
30 BreakpointID (lldb::break_id_t bp_id = LLDB_INVALID_BREAK_ID,
34 ~BreakpointID ();
/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectBreakpointCommand.cpp455 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute()
699 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute()
809 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute()
839 BreakpointID::GetCanonicalReference (&id_str, in DoExecute()
HDCommandObjectBreakpoint.cpp278 if (BreakpointID::StringIsBreakpointName(option_arg, error)) in SetOptionValue()
1057 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute()
1211 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute()
1331 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute()
1521 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute()
1911 BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i); in DoExecute()
2007 if (BreakpointID::StringIsBreakpointName(option_value, error) && error.Success()) in SetOptionValue()
2416 …valid_ids->AddBreakpointID (BreakpointID(target->GetLastCreatedBreakpoint()->GetID(), LLDB_INVALID… in VerifyIDs()
2448 BreakpointID cur_bp_id = valid_ids->GetBreakpointIDAtIndex (i); in VerifyIDs()
2456 BreakpointID::GetCanonicalReference (&id_str, in VerifyIDs()
/NextBSD/lib/clang/liblldbBreakpoint/
HDMakefile9 BreakpointID.cpp \
/NextBSD/contrib/llvm/tools/lldb/include/lldb/
HDlldb-forward.h33 class BreakpointID; variable