Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp588 PDBSymbolTypeFunctionSig *func_sig = nullptr; in CreateLLDBTypeFromPDBType() local
596 func_sig = sig.release(); in CreateLLDBTypeFromPDBType()
602 func_sig = const_cast<PDBSymbolTypeFunctionSig *>(pdb_func_sig); in CreateLLDBTypeFromPDBType()
606 auto arg_enum = func_sig->getArguments(); in CreateLLDBTypeFromPDBType()
610 bool is_variadic = func_sig->isCVarArgs(); in CreateLLDBTypeFromPDBType()
634 auto pdb_return_type = func_sig->getReturnType(); in CreateLLDBTypeFromPDBType()
647 if (func_sig->isConstType()) in CreateLLDBTypeFromPDBType()
649 if (func_sig->isVolatileType()) in CreateLLDBTypeFromPDBType()
651 auto cc = TranslateCallingConvention(func_sig->getCallingConvention()); in CreateLLDBTypeFromPDBType()