Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/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()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
DCPPLanguageRuntime.cpp311 lldb::FunctionSP func_sp = in FindLibCppStdFunctionCallableInfo() local
320 if (func_sp) { in FindLibCppStdFunctionCallableInfo()
321 calculate_symbol_context_helper(func_sp, scl); in FindLibCppStdFunctionCallableInfo()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
DSearchFilter.cpp329 cu_sp->ForeachFunction([&](const FunctionSP &func_sp) { in DoCUIteration() argument
330 if (!FunctionPasses(*func_sp.get())) in DoCUIteration()
334 func_sp.get()); in DoCUIteration()
338 shouldContinue = DoFunctionIteration(func_sp.get(), context, searcher); in DoCUIteration()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
DSymbolFilePDB.cpp301 FunctionSP func_sp = in ParseCompileUnitFunctionForPDBFunc() local
305 comp_unit.AddFunction(func_sp); in ParseCompileUnitFunctionForPDBFunc()
321 return func_sp.get(); in ParseCompileUnitFunctionForPDBFunc()
334 auto func_sp = comp_unit.FindFunctionByUID(pdb_func_up->getSymIndexId()); in ParseFunctions() local
335 if (!func_sp) { in ParseFunctions()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp2284 FunctionSP func_sp; in ParseFunctionFromDWARF() local
2298 func_sp = in ParseFunctionFromDWARF()
2304 if (func_sp.get() != nullptr) { in ParseFunctionFromDWARF()
2306 func_sp->GetFrameBaseExpression() = frame_base; in ParseFunctionFromDWARF()
2307 comp_unit.AddFunction(func_sp); in ParseFunctionFromDWARF()
2308 return func_sp.get(); in ParseFunctionFromDWARF()
/freebsd-12-stable/contrib/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()