Home
last modified time | relevance | path

Searched refs:func_sp (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
DSymbolFileSymtab.cpp186 FunctionSP func_sp( in ParseFunctions() local
195 if (func_sp.get() != nullptr) { in ParseFunctions()
196 comp_unit.AddFunction(func_sp); in ParseFunctions()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
DCPPLanguageRuntime.cpp313 lldb::FunctionSP func_sp = in FindLibCppStdFunctionCallableInfo() local
322 if (func_sp) { in FindLibCppStdFunctionCallableInfo()
323 calculate_symbol_context_helper(func_sp, scl); in FindLibCppStdFunctionCallableInfo()
/external/llvm-project/lldb/source/Core/
DSearchFilter.cpp338 cu_sp->ForeachFunction([&](const FunctionSP &func_sp) { in DoCUIteration() argument
339 if (!FunctionPasses(*func_sp.get())) in DoCUIteration()
343 func_sp.get()); in DoCUIteration()
347 shouldContinue = DoFunctionIteration(func_sp.get(), context, searcher); in DoCUIteration()
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
DSymbolFilePDB.cpp299 FunctionSP func_sp = in ParseCompileUnitFunctionForPDBFunc() local
303 comp_unit.AddFunction(func_sp); in ParseCompileUnitFunctionForPDBFunc()
319 return func_sp.get(); in ParseCompileUnitFunctionForPDBFunc()
332 auto func_sp = comp_unit.FindFunctionByUID(pdb_func_up->getSymIndexId()); in ParseFunctions() local
333 if (!func_sp) { in ParseFunctions()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp2311 FunctionSP func_sp; in ParseFunctionFromDWARF() local
2325 func_sp = in ParseFunctionFromDWARF()
2331 if (func_sp.get() != nullptr) { in ParseFunctionFromDWARF()
2333 func_sp->GetFrameBaseExpression() = frame_base; in ParseFunctionFromDWARF()
2334 comp_unit.AddFunction(func_sp); in ParseFunctionFromDWARF()
2335 return func_sp.get(); in ParseFunctionFromDWARF()
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DSymbolFileNativePDB.cpp395 FunctionSP func_sp = std::make_shared<Function>( in CreateFunction() local
399 comp_unit.AddFunction(func_sp); in CreateFunction()
403 return func_sp; in CreateFunction()