Home
last modified time | relevance | path

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

/external/lldb/source/Expression/
DClangFunction.cpp120 m_wrapper_function_text.clear(); in CompileFunction()
121 m_wrapper_function_text.append ("extern \"C\" void "); in CompileFunction()
122 m_wrapper_function_text.append (m_wrapper_function_name); in CompileFunction()
123 m_wrapper_function_text.append (" (void *input)\n{\n struct "); in CompileFunction()
124 m_wrapper_function_text.append (m_wrapper_struct_name); in CompileFunction()
125 m_wrapper_function_text.append (" \n {\n"); in CompileFunction()
126 m_wrapper_function_text.append (" "); in CompileFunction()
127 m_wrapper_function_text.append (return_type_str); in CompileFunction()
128 m_wrapper_function_text.append (" (*fn_ptr) ("); in CompileFunction()
182 m_wrapper_function_text.append (type_name); in CompileFunction()
[all …]
/external/lldb/include/lldb/Expression/
DClangFunction.h546 return m_wrapper_function_text.c_str(); in Text()
630 …std::string m_wrapper_function_text; ///< The contents of the wrapper f… variable