Home
last modified time | relevance | path

Searched refs:SBStringList (Results 1 – 25 of 36) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBStringList.cpp17 SBStringList::SBStringList() : m_opaque_up() { in SBStringList() function in SBStringList
21 SBStringList::SBStringList(const lldb_private::StringList *lldb_strings_ptr) in SBStringList() function in SBStringList
27 SBStringList::SBStringList(const SBStringList &rhs) : m_opaque_up() { in SBStringList() function in SBStringList
28 LLDB_RECORD_CONSTRUCTOR(SBStringList, (const lldb::SBStringList &), rhs); in SBStringList()
33 const SBStringList &SBStringList::operator=(const SBStringList &rhs) { in operator =()
35 SBStringList, operator=,(const lldb::SBStringList &), rhs); in operator =()
42 SBStringList::~SBStringList() = default;
85 void SBStringList::AppendList(const SBStringList &strings) { in AppendList()
131 void SBStringList::Clear() { in Clear()
145 LLDB_REGISTER_CONSTRUCTOR(SBStringList, (const lldb::SBStringList &)); in RegisterMethods()
[all …]
H A DSBEnvironment.cpp97 SBStringList SBEnvironment::GetEntries() { in GetEntries()
98 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBStringList, SBEnvironment, GetEntries); in GetEntries()
100 SBStringList entries; in GetEntries()
115 void SBEnvironment::SetEntries(const SBStringList &entries, bool append) { in SetEntries()
117 (const lldb::SBStringList &, bool), entries, append); in SetEntries()
148 LLDB_REGISTER_METHOD(lldb::SBStringList, SBEnvironment, GetEntries, ()); in RegisterMethods()
151 (const lldb::SBStringList &, bool)); in RegisterMethods()
H A DSBCommandInterpreter.cpp230 lldb::SBStringList &), in HandleCompletion()
234 SBStringList dummy_descriptions; in HandleCompletion()
243 SBStringList &descriptions) { in HandleCompletionWithDescriptions()
247 lldb::SBStringList &, lldb::SBStringList &), in HandleCompletionWithDescriptions()
303 SBStringList temp_matches_list(&lldb_matches); in HandleCompletionWithDescriptions()
312 int max_return_elements, SBStringList &matches, in HandleCompletionWithDescriptions()
313 SBStringList &descriptions) { in HandleCompletionWithDescriptions()
317 lldb::SBStringList &), in HandleCompletionWithDescriptions()
786 lldb::SBStringList &)); in RegisterMethods()
790 lldb::SBStringList &, lldb::SBStringList &)); in RegisterMethods()
[all …]
H A DSBBreakpointLocation.cpp271 void SBBreakpointLocation::SetCommandLineCommands(SBStringList &commands) { in SetCommandLineCommands()
273 (lldb::SBStringList &), commands); in SetCommandLineCommands()
289 bool SBBreakpointLocation::GetCommandLineCommands(SBStringList &commands) { in GetCommandLineCommands()
291 (lldb::SBStringList &), commands); in GetCommandLineCommands()
507 (lldb::SBStringList &)); in RegisterMethods()
509 (lldb::SBStringList &)); in RegisterMethods()
H A DSBStructuredData.cpp132 bool SBStructuredData::GetKeys(lldb::SBStringList &keys) const { in GetKeys()
134 (lldb::SBStringList &), keys); in GetKeys()
232 (lldb::SBStringList &)); in RegisterMethods()
H A DSBBreakpointName.cpp473 void SBBreakpointName::SetCommandLineCommands(SBStringList &commands) { in SetCommandLineCommands()
475 (lldb::SBStringList &), commands); in SetCommandLineCommands()
493 bool SBBreakpointName::GetCommandLineCommands(SBStringList &commands) { in GetCommandLineCommands()
495 (lldb::SBStringList &), commands); in GetCommandLineCommands()
740 (lldb::SBStringList &)); in RegisterMethods()
742 (lldb::SBStringList &)); in RegisterMethods()
H A DSBBreakpoint.cpp494 void SBBreakpoint::SetCommandLineCommands(SBStringList &commands) { in SetCommandLineCommands()
496 (lldb::SBStringList &), commands); in SetCommandLineCommands()
512 bool SBBreakpoint::GetCommandLineCommands(SBStringList &commands) { in GetCommandLineCommands()
514 (lldb::SBStringList &), commands); in GetCommandLineCommands()
732 void SBBreakpoint::GetNames(SBStringList &names) { in GetNames()
733 LLDB_RECORD_METHOD(void, SBBreakpoint, GetNames, (lldb::SBStringList &), in GetNames()
1037 (lldb::SBStringList &)); in RegisterMethods()
1039 (lldb::SBStringList &)); in RegisterMethods()
1059 LLDB_REGISTER_METHOD(void, SBBreakpoint, GetNames, (lldb::SBStringList &)); in RegisterMethods()
H A DSBTarget.cpp1088 source_regex, module_list, source_file_list, SBStringList())); in BreakpointCreateBySourceRegex()
1094 const SBStringList &func_names) { in BreakpointCreateBySourceRegex()
1098 const lldb::SBFileSpecList &, const lldb::SBStringList &), in BreakpointCreateBySourceRegex()
1245 void SBTarget::GetBreakpointNames(SBStringList &names) { in GetBreakpointNames()
1246 LLDB_RECORD_METHOD(void, SBTarget, GetBreakpointNames, (lldb::SBStringList &), in GetBreakpointNames()
1315 SBStringList empty_name_list; in BreakpointsCreateFromFile()
1321 SBStringList &matching_names, in BreakpointsCreateFromFile()
1325 (lldb::SBFileSpec &, lldb::SBStringList &, lldb::SBBreakpointList &), in BreakpointsCreateFromFile()
2617 const lldb::SBFileSpecList &, const lldb::SBStringList &)); in RegisterMethods()
2634 (lldb::SBStringList &)); in RegisterMethods()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBStringList.h16 class LLDB_API SBStringList {
18 SBStringList();
20 SBStringList(const lldb::SBStringList &rhs);
22 const SBStringList &operator=(const SBStringList &rhs);
24 ~SBStringList();
34 void AppendList(const lldb::SBStringList &strings);
51 SBStringList(const lldb_private::StringList *lldb_strings);
H A DSBCommandInterpreter.h188 int max_return_elements, lldb::SBStringList &matches);
192 lldb::SBStringList &matches);
199 lldb::SBStringList &matches, lldb::SBStringList &descriptions);
205 lldb::SBStringList &matches,
206 lldb::SBStringList &descriptions);
H A DSBEnvironment.h69 SBStringList GetEntries();
91 void SetEntries(const SBStringList &entries, bool append);
H A DSBBreakpoint.h102 void SetCommandLineCommands(SBStringList &commands);
104 bool GetCommandLineCommands(SBStringList &commands);
116 void GetNames(SBStringList &names);
H A DSBBreakpointLocation.h63 void SetCommandLineCommands(lldb::SBStringList &commands);
65 bool GetCommandLineCommands(lldb::SBStringList &commands);
H A DSBBreakpointName.h91 void SetCommandLineCommands(lldb::SBStringList &commands);
93 bool GetCommandLineCommands(lldb::SBStringList &commands);
H A DSBTarget.h638 const SBFileSpecList &source_file, const SBStringList &func_names);
706 SBStringList &matching_names,
749 void GetBreakpointNames(SBStringList &names);
H A DSBStructuredData.h55 bool GetKeys(lldb::SBStringList &keys) const;
H A DSBDefines.h69 class LLDB_API SBStringList; variable
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBStringList.i13 ) SBStringList;
14 class SBStringList
18 SBStringList ();
20 SBStringList (const lldb::SBStringList &rhs);
22 ~SBStringList ();
36 AppendList (const lldb::SBStringList &strings);
H A DSBCommandInterpreter.i157 lldb::SBStringList &matches);
164 lldb::SBStringList &matches,
165 lldb::SBStringList &descriptions);
H A DSBEnvironment.i36 SBStringList GetEntries();
40 void SetEntries(const SBStringList &entries, bool append);
H A DSBBreakpointLocation.i101 void SetCommandLineCommands(SBStringList &commands);
103 bool GetCommandLineCommands(SBStringList &commands);
H A DSBBreakpointName.i91 void SetCommandLineCommands(SBStringList &commands);
93 bool GetCommandLineCommands(SBStringList &commands);
H A DSBBreakpoint.i205 void SetCommandLineCommands(SBStringList &commands);
207 bool GetCommandLineCommands(SBStringList &commands);
222 GetNames (SBStringList &names);
H A DSBStructuredData.i39 bool GetKeys(lldb::SBStringList &keys) const;
H A DSBTarget.i658 const SBStringList &func_names);
757 void GetBreakpointNames(SBStringList &names);
801 SBStringList &matching_names,

12