Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Expression/
DUtilityFunction.cpp63 if (m_caller_up) in MakeFunctionCaller()
64 return m_caller_up.get(); in MakeFunctionCaller()
77 m_caller_up.reset(process_sp->GetTarget().GetFunctionCallerForLanguage( in MakeFunctionCaller()
84 if (m_caller_up) { in MakeFunctionCaller()
88 m_caller_up->CompileFunction(thread_to_use_sp, diagnostics); in MakeFunctionCaller()
93 m_caller_up.reset(); in MakeFunctionCaller()
100 if (!m_caller_up->WriteFunctionWrapper(exe_ctx, diagnostics)) { in MakeFunctionCaller()
104 m_caller_up.reset(); in MakeFunctionCaller()
108 return m_caller_up.get(); in MakeFunctionCaller()
/external/llvm-project/lldb/include/lldb/Expression/
DUtilityFunction.h108 FunctionCaller *GetFunctionCaller() { return m_caller_up.get(); } in GetFunctionCaller()
117 std::unique_ptr<FunctionCaller> m_caller_up; variable