Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp522 const CTFType *ctf_type = it->second; in CompleteType() local
526 assert(llvm::isa<CTFRecord>(ctf_type)); in CompleteType()
536 ctf_type->uid, field.type); in CompleteType()
556 m_ctf_types.erase(ctf_type->uid); in CompleteType()
573 if (!ctf_type) in CreateType()
577 switch (ctf_type->kind) { in CreateType()
588 return CreateArray(*static_cast<CTFArray *>(ctf_type)); in CreateType()
590 return CreateEnum(*static_cast<CTFEnum *>(ctf_type)); in CreateType()
603 ctf_type->uid, ctf_type->name, ctf_type->kind), in CreateType()
993 CTFType *ctf_type = ctf_type_it->second.get(); in ResolveTypeUID() local
[all …]
H A DSymbolFileCTF.h216 llvm::Expected<lldb::TypeSP> CreateType(CTFType *ctf_type);