Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangFunctionCaller.cpp86 m_wrapper_function_text.clear(); in CompileFunction()
87 m_wrapper_function_text.append("extern \"C\" void "); in CompileFunction()
88 m_wrapper_function_text.append(m_wrapper_function_name); in CompileFunction()
89 m_wrapper_function_text.append(" (void *input)\n{\n struct "); in CompileFunction()
90 m_wrapper_function_text.append(m_wrapper_struct_name); in CompileFunction()
91 m_wrapper_function_text.append(" \n {\n"); in CompileFunction()
92 m_wrapper_function_text.append(" "); in CompileFunction()
93 m_wrapper_function_text.append(return_type_str); in CompileFunction()
94 m_wrapper_function_text.append(" (*fn_ptr) ("); in CompileFunction()
147 m_wrapper_function_text.append(type_name); in CompileFunction()
[all …]
/external/llvm-project/lldb/include/lldb/Expression/
DFunctionCaller.h268 const char *Text() override { return m_wrapper_function_text.c_str(); } in Text()
311 m_wrapper_function_text; ///< The contents of the wrapper function. variable