Lines Matching refs:m_wrapper_function_text

87   m_wrapper_function_text.clear();  in CompileFunction()
88 m_wrapper_function_text.append("extern \"C\" void "); in CompileFunction()
89 m_wrapper_function_text.append(m_wrapper_function_name); in CompileFunction()
90 m_wrapper_function_text.append(" (void *input)\n{\n struct "); in CompileFunction()
91 m_wrapper_function_text.append(m_wrapper_struct_name); in CompileFunction()
92 m_wrapper_function_text.append(" \n {\n"); in CompileFunction()
93 m_wrapper_function_text.append(" "); in CompileFunction()
94 m_wrapper_function_text.append(return_type_str); in CompileFunction()
95 m_wrapper_function_text.append(" (*fn_ptr) ("); in CompileFunction()
148 m_wrapper_function_text.append(type_name); in CompileFunction()
150 m_wrapper_function_text.append(", "); in CompileFunction()
165 m_wrapper_function_text.append( in CompileFunction()
168 m_wrapper_function_text.append(args_buffer); in CompileFunction()
170 m_wrapper_function_text.append(" "); in CompileFunction()
171 m_wrapper_function_text.append(return_type_str); in CompileFunction()
172 m_wrapper_function_text.append(" return_value;"); in CompileFunction()
173 m_wrapper_function_text.append("\n };\n struct "); in CompileFunction()
174 m_wrapper_function_text.append(m_wrapper_struct_name); in CompileFunction()
175 m_wrapper_function_text.append("* __lldb_fn_data = (struct "); in CompileFunction()
176 m_wrapper_function_text.append(m_wrapper_struct_name); in CompileFunction()
177 m_wrapper_function_text.append(" *) input;\n"); in CompileFunction()
179 m_wrapper_function_text.append( in CompileFunction()
181 m_wrapper_function_text.append(args_list_buffer); in CompileFunction()
182 m_wrapper_function_text.append(");\n}\n"); in CompileFunction()
185 LLDB_LOGF(log, "Expression: \n\n%s\n\n", m_wrapper_function_text.c_str()); in CompileFunction()