Home
last modified time | relevance | path

Searched refs:m_ipd_buf (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DRichManglingContext.cpp20 std::free(m_ipd_buf); in ~RichManglingContext()
50 LLDB_LOG(log, "demangled itanium: {0} -> \"{1}\"", mangled, m_ipd_buf); in FromItaniumName()
90 m_ipd_buf[0] = '\0'; in processIPDStrResult()
91 return llvm::StringRef(m_ipd_buf, 0); in processIPDStrResult()
99 if (LLVM_UNLIKELY(ipd_res != m_ipd_buf || res_size > m_ipd_buf_size)) { in processIPDStrResult()
100 m_ipd_buf = ipd_res; // std::realloc freed or reused the old buffer. in processIPDStrResult()
109 return llvm::StringRef(m_ipd_buf, res_size - 1); in processIPDStrResult()
117 auto buf = m_ipd.getFunctionBaseName(m_ipd_buf, &n); in ParseFunctionBaseName()
134 auto buf = m_ipd.getFunctionDeclContextName(m_ipd_buf, &n); in ParseFunctionDeclContextName()
151 auto buf = m_ipd.finishDemangle(m_ipd_buf, in ParseFullName()
[all...]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DRichManglingContext.h28 m_ipd_buf = static_cast<char *>(std::malloc(m_ipd_buf_size)); in RichManglingContext()
29 m_ipd_buf[0] = '\0'; in RichManglingContext()
67 char *m_ipd_buf; variable