Home
last modified time | relevance | path

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

/freebsd/contrib/tcpdump/
H A Dprint-atm.c430 uint8_t cell_type, func_type, payload, clp; in oam_print() local
441 func_type = GET_U_1((p + ATM_HDR_LEN_NOHEC + hec)) & 0x0f; in oam_print()
464 ND_PRINT(", func-type unknown (%u)", func_type); in oam_print()
467 tok2str(oam_functype_str, "none", func_type), in oam_print()
468 func_type); in oam_print()
472 switch (cell_type << 4 | func_type) { in oam_print()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBFunction.cpp100 Type *func_type = m_opaque_ptr->GetType(); in GetDescription() local
101 if (func_type) in GetDescription()
102 s.Printf(", type = %s", func_type->GetName().AsCString()); in GetDescription()
H A DSBType.cpp318 CompilerType func_type(m_opaque_sp->GetCompilerType(true)); in GetFunctionArgumentTypes() local
319 size_t count = func_type.GetNumberOfFunctionArguments(); in GetFunctionArgumentTypes()
321 sb_type_list.Append(SBType(func_type.GetFunctionArgumentAtIndex(i))); in GetFunctionArgumentTypes()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp491 CompilerType func_type = m_ast->CreateFunctionType( in CreateFunction() local
497 LLDB_INVALID_UID, Type::eEncodingIsUID, decl, func_type, in CreateFunction()
815 CompilerType func_type = m_ast->CreateFunctionType( in ParseFunctions() local
821 LLDB_INVALID_UID, Type::eEncodingIsUID, decl, func_type, in ParseFunctions()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp341 Type *func_type = function.GetType(); in AddRange() local
343 const Declaration &func_decl = func_type->GetDeclaration(); in AddRange()
H A DSymbolContext.cpp228 Type *func_type = function->GetType(); in GetDescription() local
229 if (func_type) { in GetDescription()
231 func_type->GetDescription(s, level, false, target); in GetDescription()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h432 Type *func_type, Address address, AddressRanges ranges);
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1276 Type *func_type = nullptr; in ParseSubroutine() local
1279 func_type = dwarf->ResolveTypeUID(attrs.type.Reference(), true); in ParseSubroutine()
1281 if (func_type) in ParseSubroutine()
1282 return_clang_type = func_type->GetForwardCompilerType(); in ParseSubroutine()
2508 Type *func_type = dwarf->GetDIEToType().lookup(die.GetDIE()); in ParseFunctionFromDWARF() local
2510 assert(func_type == nullptr || func_type != DIE_IS_BEING_PARSED); in ParseFunctionFromDWARF()
2534 func_user_id, func_name, func_type, std::move(func_addr), in ParseFunctionFromDWARF()
/freebsd/contrib/elftoolchain/libelftc/
H A Dlibelftc_dem_gnu3.c101 int func_type; member
370 d->func_type = 0; in cpp_demangle_data_init()
1374 ++ddata->func_type; in cpp_demangle_read_function()
2089 p_func_type = ddata->func_type; in cpp_demangle_read_pointer_to_member()
2093 if (p_func_type == ddata->func_type) { in cpp_demangle_read_pointer_to_member()
/freebsd/contrib/libcxxrt/
H A Dlibelftc_dem_gnu3.c115 int func_type; member
708 d->func_type = 0; in cpp_demangle_data_init()
1712 ++ddata->func_type; in cpp_demangle_read_function()
2427 p_func_type = ddata->func_type; in cpp_demangle_read_pointer_to_member()
2431 if (p_func_type == ddata->func_type) { in cpp_demangle_read_pointer_to_member()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp304 lldb_private::Type *func_type = ResolveTypeUID(pdb_func.getSymIndexId()); in ParseCompileUnitFunctionForPDBFunc() local
305 if (!func_type) in ParseCompileUnitFunctionForPDBFunc()
313 &comp_unit, pdb_func.getSymIndexId(), func_type_uid, mangled, func_type, in ParseCompileUnitFunctionForPDBFunc()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp494 TypeSP func_type = GetOrCreateType(proc.FunctionType); in CreateFunction() local
495 if (!func_type) in CreateFunction()
502 func_type.get(), func_addr, in CreateFunction()
H A DPdbAstBuilder.cpp1044 const clang::FunctionProtoType *func_type = in GetOrCreateFunctionDecl() local
1054 func_type->getNumParams(), storage, false, parent); in GetOrCreateFunctionDecl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4737 QualType func_type = ast.getFunctionNoProtoType(ast.VoidTy, generic_ext_info); in CreateGenericFunctionPrototype() local
4738 return GetType(func_type); in CreateGenericFunctionPrototype()