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.cpp99 Type *func_type = m_opaque_ptr->GetType(); in GetDescription() local
100 if (func_type) in GetDescription()
101 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/Symbol/
H A DSymbolContext.cpp222 Type *func_type = function->GetType(); in GetDescription() local
223 if (func_type) { in GetDescription()
225 func_type->GetDescription(s, level, false, target); in GetDescription()
346 Type *func_type = function->GetType(); in Dump() local
347 if (func_type) { in Dump()
349 func_type->Dump(s, false); in Dump()
H A DBlock.cpp362 Type *func_type = function->GetType(); in AddRange() local
364 const Declaration &func_decl = func_type->GetDeclaration(); in AddRange()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp493 CompilerType func_type = m_ast->CreateFunctionType( in CreateFunction() local
499 LLDB_INVALID_UID, Type::eEncodingIsUID, decl, func_type, in CreateFunction()
816 CompilerType func_type = m_ast->CreateFunctionType( in ParseFunctions() local
823 LLDB_INVALID_UID, Type::eEncodingIsUID, decl, func_type, in ParseFunctions()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h421 /// \param[in] func_type
431 Type *func_type, const AddressRange &range);
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1190 Type *func_type = nullptr; in ParseSubroutine() local
1193 func_type = dwarf->ResolveTypeUID(attrs.type.Reference(), true); in ParseSubroutine()
1195 if (func_type) in ParseSubroutine()
1196 return_clang_type = func_type->GetForwardCompilerType(); in ParseSubroutine()
2420 Type *func_type = dwarf->GetDIEToType().lookup(die.GetDIE()); in ParseFunctionFromDWARF() local
2422 assert(func_type == nullptr || func_type != DIE_IS_BEING_PARSED); in ParseFunctionFromDWARF()
2428 func_user_id, func_name, func_type, 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()
314 func_type_uid, mangled, func_type, func_range); in ParseCompileUnitFunctionForPDBFunc()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp499 TypeSP func_type = GetOrCreateType(proc.FunctionType); in CreateFunction() local
500 if (!func_type) in CreateFunction()
507 func_type.get(), func_range); in CreateFunction()
H A DPdbAstBuilder.cpp1044 const clang::FunctionProtoType *func_type = in GetOrCreateFunctionDecl()
1054 func_type->getNumParams(), storage, false, parent); in GetOrCreateFunctionDecl()
1043 const clang::FunctionProtoType *func_type = GetOrCreateFunctionDecl() local
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4706 QualType func_type = ast.getFunctionNoProtoType(ast.VoidTy, generic_ext_info); in CreateGenericFunctionPrototype() local
4707 return GetType(func_type); in CreateGenericFunctionPrototype()