Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DAuxVector.cpp12 AuxVector::AuxVector(const lldb_private::DataExtractor &data) { in AuxVector() function in AuxVector
16 void AuxVector::ParseAuxv(const lldb_private::DataExtractor &data) { in ParseAuxv()
34 AuxVector::GetAuxValue(enum EntryType entry_type) const { in GetAuxValue()
41 void AuxVector::DumpToLog(lldb_private::Log *log) const { in DumpToLog()
53 const char *AuxVector::GetEntryName(EntryType type) const { in GetEntryName()
H A DAuxVector.h17 class AuxVector {
20 AuxVector(const lldb_private::DataExtractor &data);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/
H A DNativeProcessELF.cpp17 NativeProcessELF::GetAuxValue(enum AuxVector::EntryType type) { in GetAuxValue()
25 m_aux_vector = std::make_unique<AuxVector>(auxv_data); in GetAuxValue()
49 GetAuxValue(AuxVector::AUXV_AT_PHDR); in GetELFImageInfoAddress()
51 GetAuxValue(AuxVector::AUXV_AT_PHENT); in GetELFImageInfoAddress()
53 GetAuxValue(AuxVector::AUXV_AT_PHNUM); in GetELFImageInfoAddress()
H A DNativeProcessELF.h26 std::optional<uint64_t> GetAuxValue(enum AuxVector::EntryType type);
51 std::unique_ptr<AuxVector> m_aux_vector;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.h21 class AuxVector; variable
74 std::unique_ptr<AuxVector> m_auxv;
H A DDynamicLoaderPOSIXDYLD.cpp85 m_auxv = std::make_unique<AuxVector>(m_process->GetAuxvData()); in DidAttach()
174 m_auxv = std::make_unique<AuxVector>(m_process->GetAuxvData()); in DidLaunch()
691 m_auxv->GetAuxValue(AuxVector::AUXV_AT_SYSINFO_EHDR)) in EvalSpecialModulesStatus()
695 m_auxv->GetAuxValue(AuxVector::AUXV_AT_BASE)) in EvalSpecialModulesStatus()
707 m_auxv->GetAuxValue(AuxVector::AUXV_AT_ENTRY); in GetEntryPoint()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_arm64.cpp83 AuxVector aux_vec(process->GetAuxvData()); in RegisterContextCorePOSIX_arm64()
85 aux_vec.GetAuxValue(AuxVector::AUXV_AT_HWCAP); in RegisterContextCorePOSIX_arm64()
87 aux_vec.GetAuxValue(AuxVector::AUXV_AT_HWCAP2); in RegisterContextCorePOSIX_arm64()
/freebsd-14.2/lib/clang/liblldb/
H A DMakefile469 SRCS+= Plugins/Process/Utility/AuxVector.cpp