Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DAuxVector.cpp11 AuxVector::AuxVector(const lldb_private::DataExtractor &data) { in AuxVector() function in AuxVector
15 void AuxVector::ParseAuxv(const lldb_private::DataExtractor &data) { in ParseAuxv()
33 AuxVector::GetAuxValue(enum EntryType entry_type) const { in GetAuxValue()
40 void AuxVector::DumpToLog(lldb_private::Log *log) const { in DumpToLog()
52 const char *AuxVector::GetEntryName(EntryType type) const { in GetEntryName()
H A DAuxVector.h16 class AuxVector {
19 AuxVector(const lldb_private::DataExtractor &data);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/
H A DNativeProcessELF.cpp16 NativeProcessELF::GetAuxValue(enum AuxVector::EntryType type) { in GetAuxValue()
24 m_aux_vector = std::make_unique<AuxVector>(auxv_data); in GetAuxValue()
48 GetAuxValue(AuxVector::AUXV_AT_PHDR); in GetELFImageInfoAddress()
50 GetAuxValue(AuxVector::AUXV_AT_PHENT); in GetELFImageInfoAddress()
52 GetAuxValue(AuxVector::AUXV_AT_PHNUM); in GetELFImageInfoAddress()
H A DNativeProcessELF.h25 llvm::Optional<uint64_t> GetAuxValue(enum AuxVector::EntryType type);
48 std::unique_ptr<AuxVector> m_aux_vector;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.h21 class AuxVector; variable
71 std::unique_ptr<AuxVector> m_auxv;
H A DDynamicLoaderPOSIXDYLD.cpp93 m_auxv = std::make_unique<AuxVector>(m_process->GetAuxvData()); in DidAttach()
186 m_auxv = std::make_unique<AuxVector>(m_process->GetAuxvData()); in DidLaunch()
653 m_auxv->GetAuxValue(AuxVector::AUXV_AT_SYSINFO_EHDR)) in EvalSpecialModulesStatus()
657 m_auxv->GetAuxValue(AuxVector::AUXV_AT_BASE)) in EvalSpecialModulesStatus()
669 m_auxv->GetAuxValue(AuxVector::AUXV_AT_ENTRY); in GetEntryPoint()
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile435 SRCS+= Plugins/Process/Utility/AuxVector.cpp