Searched refs:strc (Results 1 – 5 of 5) sorted by relevance
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBStringList.cpp | 69 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 D | StringList.cpp | 29 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 D | StringList.h | 34 StringList(const char **strv, int strc); 50 void AppendList(const char **strv, int strc);
|
/openbsd/gnu/llvm/lldb/bindings/interface/ |
H A D | SBStringList.i | 33 AppendList (const char **strv, int strc);
|
/openbsd/gnu/llvm/lldb/include/lldb/API/ |
H A D | SBStringList.h | 32 void AppendList(const char **strv, int strc);
|