Home
last modified time | relevance | path

Searched refs:strc (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/llvm/lldb/source/API/
H A DSBStringList.cpp69 void SBStringList::AppendList(const char **strv, int strc) { in AppendList() argument
70 LLDB_INSTRUMENT_VA(this, strv, strc); in AppendList()
72 if ((strv != nullptr) && (strc > 0)) { in AppendList()
74 m_opaque_up->AppendList(strv, strc); in AppendList()
76 m_opaque_up = std::make_unique<lldb_private::StringList>(strv, strc); in AppendList()
/openbsd/gnu/llvm/lldb/source/Utility/
H A DStringList.cpp29 StringList::StringList(const char **strv, int strc) : m_strings() { in StringList() argument
30 for (int i = 0; i < strc; ++i) { in StringList()
62 void StringList::AppendList(const char **strv, int strc) { in AppendList() argument
63 for (int i = 0; i < strc; ++i) { in AppendList()
/openbsd/gnu/llvm/lldb/include/lldb/Utility/
H A DStringList.h34 StringList(const char **strv, int strc);
50 void AppendList(const char **strv, int strc);
/openbsd/gnu/llvm/lldb/bindings/interface/
H A DSBStringList.i33 AppendList (const char **strv, int strc);
/openbsd/gnu/llvm/lldb/include/lldb/API/
H A DSBStringList.h32 void AppendList(const char **strv, int strc);