Home
last modified time | relevance | path

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

12

/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBStringList.cpp17 SBStringList::SBStringList() : m_opaque_up() { in SBStringList() function in SBStringList
18 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBStringList); 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 =()
34 LLDB_RECORD_METHOD(const lldb::SBStringList &, in operator =()
35 SBStringList, operator=,(const lldb::SBStringList &), rhs); in operator =()
42 SBStringList::~SBStringList() {} in ~SBStringList()
44 const lldb_private::StringList *SBStringList::operator->() const { in operator ->()
[all …]
HDSBCommandInterpreter.cpp331 int match_start_point, int max_return_elements, SBStringList &matches) { in HandleCompletion()
334 lldb::SBStringList &), in HandleCompletion()
338 SBStringList dummy_descriptions; in HandleCompletion()
346 int match_start_point, int max_return_elements, SBStringList &matches, in HandleCompletionWithDescriptions()
347 SBStringList &descriptions) { in HandleCompletionWithDescriptions()
351 lldb::SBStringList &, lldb::SBStringList &), in HandleCompletionWithDescriptions()
407 SBStringList temp_matches_list(&lldb_matches); in HandleCompletionWithDescriptions()
409 SBStringList temp_descriptions_list(&lldb_descriptions); in HandleCompletionWithDescriptions()
416 int max_return_elements, SBStringList &matches, in HandleCompletionWithDescriptions()
417 SBStringList &descriptions) { in HandleCompletionWithDescriptions()
[all …]
HDSBBreakpointLocation.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()
HDSBStructuredData.cpp123 bool SBStructuredData::GetKeys(lldb::SBStringList &keys) const { in GetKeys()
125 (lldb::SBStringList &), keys); in GetKeys()
232 (lldb::SBStringList &)); in RegisterMethods()
HDSBBreakpointName.cpp472 void SBBreakpointName::SetCommandLineCommands(SBStringList &commands) { in SetCommandLineCommands()
474 (lldb::SBStringList &), commands); in SetCommandLineCommands()
492 bool SBBreakpointName::GetCommandLineCommands(SBStringList &commands) { in GetCommandLineCommands()
494 (lldb::SBStringList &), commands); in GetCommandLineCommands()
740 (lldb::SBStringList &)); in RegisterMethods()
742 (lldb::SBStringList &)); in RegisterMethods()
HDSBBreakpoint.cpp484 void SBBreakpoint::SetCommandLineCommands(SBStringList &commands) { in SetCommandLineCommands()
486 (lldb::SBStringList &), commands); in SetCommandLineCommands()
502 bool SBBreakpoint::GetCommandLineCommands(SBStringList &commands) { in GetCommandLineCommands()
504 (lldb::SBStringList &), commands); in GetCommandLineCommands()
698 void SBBreakpoint::GetNames(SBStringList &names) { in GetNames()
699 LLDB_RECORD_METHOD(void, SBBreakpoint, GetNames, (lldb::SBStringList &), in GetNames()
1002 (lldb::SBStringList &)); in RegisterMethods()
1004 (lldb::SBStringList &)); in RegisterMethods()
1020 LLDB_REGISTER_METHOD(void, SBBreakpoint, GetNames, (lldb::SBStringList &)); in RegisterMethods()
HDSBTarget.cpp1037 source_regex, module_list, source_file_list, SBStringList())); in BreakpointCreateBySourceRegex()
1043 const SBStringList &func_names) { in BreakpointCreateBySourceRegex()
1047 const lldb::SBFileSpecList &, const lldb::SBStringList &), in BreakpointCreateBySourceRegex()
1194 void SBTarget::GetBreakpointNames(SBStringList &names) { in GetBreakpointNames()
1195 LLDB_RECORD_METHOD(void, SBTarget, GetBreakpointNames, (lldb::SBStringList &), in GetBreakpointNames()
1264 SBStringList empty_name_list; in BreakpointsCreateFromFile()
1270 SBStringList &matching_names, in BreakpointsCreateFromFile()
1274 (lldb::SBFileSpec &, lldb::SBStringList &, lldb::SBBreakpointList &), in BreakpointsCreateFromFile()
2517 const lldb::SBFileSpecList &, const lldb::SBStringList &)); in RegisterMethods()
2534 (lldb::SBStringList &)); in RegisterMethods()
[all …]
HDSBDebugger.cpp1266 SBStringList
1270 lldb::SBStringList, SBDebugger, GetInternalVariableValue, in GetInternalVariableValue()
1273 SBStringList ret_value; in GetInternalVariableValue()
1289 return LLDB_RECORD_RESULT(SBStringList(&string_list)); in GetInternalVariableValue()
1293 return LLDB_RECORD_RESULT(SBStringList()); in GetInternalVariableValue()
1773 LLDB_REGISTER_STATIC_METHOD(lldb::SBStringList, SBDebugger, in RegisterMethods()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBStringList.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);
HDSBCommandInterpreter.h160 int max_return_elements, lldb::SBStringList &matches);
164 lldb::SBStringList &matches);
171 lldb::SBStringList &matches, lldb::SBStringList &descriptions);
177 lldb::SBStringList &matches,
178 lldb::SBStringList &descriptions);
HDSBBreakpoint.h100 void SetCommandLineCommands(SBStringList &commands);
102 bool GetCommandLineCommands(SBStringList &commands);
112 void GetNames(SBStringList &names);
HDSBBreakpointLocation.h63 void SetCommandLineCommands(lldb::SBStringList &commands);
65 bool GetCommandLineCommands(lldb::SBStringList &commands);
HDSBBreakpointName.h91 void SetCommandLineCommands(lldb::SBStringList &commands);
93 bool GetCommandLineCommands(lldb::SBStringList &commands);
HDSBTarget.h619 const SBFileSpecList &source_file, const SBStringList &func_names);
687 SBStringList &matching_names,
730 void GetBreakpointNames(SBStringList &names);
HDSBStructuredData.h53 bool GetKeys(lldb::SBStringList &keys) const;
HDSBDefines.h68 class LLDB_API SBStringList; variable
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
HDSBStringList.i11 class SBStringList
15 SBStringList ();
17 SBStringList (const lldb::SBStringList &rhs);
19 ~SBStringList ();
33 AppendList (const lldb::SBStringList &strings);
HDSBCommandInterpreter.i219 lldb::SBStringList &matches);
226 lldb::SBStringList &matches,
227 lldb::SBStringList &descriptions);
HDSBBreakpoint.i202 void SetCommandLineCommands(SBStringList &commands);
204 bool GetCommandLineCommands(SBStringList &commands);
216 GetNames (SBStringList &names);
HDSBBreakpointName.i91 void SetCommandLineCommands(SBStringList &commands);
93 bool GetCommandLineCommands(SBStringList &commands);
HDSBBreakpointLocation.i101 void SetCommandLineCommands(SBStringList &commands);
103 bool GetCommandLineCommands(SBStringList &commands);
HDSBStructuredData.i40 bool GetKeys(lldb::SBStringList &keys) const;
HDSBTarget.i670 const SBStringList &func_names);
765 void GetBreakpointNames(SBStringList &names);
809 SBStringList &matching_names,
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/
HDheaders.swig52 #include "lldb/API/SBStringList.h"
HDinterfaces.swig59 %include "./interface/SBStringList.i"

12