OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ELFFile
(Results
1 - 11
of
11
) sorted by null
/external/llvm/include/llvm/Object/
ELF.h
10
// This file declares the
ELFFile
template class.
26
// Subclasses of
ELFFile
may need this for template instantiation
37
class
ELFFile
{
94
ELFFile
(StringRef Object, std::error_code &EC);
219
typedef
ELFFile
<ELFType<support::little, false>> ELF32LEFile;
220
typedef
ELFFile
<ELFType<support::little, true>> ELF64LEFile;
221
typedef
ELFFile
<ELFType<support::big, false>> ELF32BEFile;
222
typedef
ELFFile
<ELFType<support::big, true>> ELF64BEFile;
225
uint32_t
ELFFile
<ELFT>::getExtendedSymbolTableIndex(
236
ErrorOr<const typename
ELFFile
<ELFT>::Elf_Shdr *
[
all
...]
ELFObjectFile.h
183
typedef typename
ELFFile
<ELFT>::uintX_t uintX_t;
185
typedef typename
ELFFile
<ELFT>::Elf_Sym Elf_Sym;
186
typedef typename
ELFFile
<ELFT>::Elf_Shdr Elf_Shdr;
187
typedef typename
ELFFile
<ELFT>::Elf_Ehdr Elf_Ehdr;
188
typedef typename
ELFFile
<ELFT>::Elf_Rel Elf_Rel;
189
typedef typename
ELFFile
<ELFT>::Elf_Rela Elf_Rela;
190
typedef typename
ELFFile
<ELFT>::Elf_Dyn Elf_Dyn;
193
ELFFile
<ELFT> EF;
333
const
ELFFile
<ELFT> *getELFFile() const { return &EF; }
/external/llvm/tools/llvm-objdump/
ELFDump.cpp
24
template <class ELFT> void printProgramHeaders(const
ELFFile
<ELFT> *o) {
25
typedef
ELFFile
<ELFT> ELFO;
llvm-objdump.cpp
387
const
ELFFile
<ELFT> &EF = *Obj->getELFFile();
[
all
...]
/external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h
308
typedef typename object::
ELFFile
<ET>::Elf_Sym Elf_Sym;
309
typedef typename object::
ELFFile
<ET>::Elf_Shdr Elf_Shdr;
310
typedef typename object::
ELFFile
<ET>::Elf_Rel Elf_Rel;
311
typedef typename object::
ELFFile
<ET>::Elf_Word Elf_Word;
314
const object::
ELFFile
<ET> *ELF;
337
PrinterContext(StreamWriter &SW, const object::
ELFFile
<ET> *ELF,
363
const typename object::
ELFFile
<ET>::Elf_Shdr *
386
typename object::
ELFFile
<ET>::Elf_Rela RelA;
ELFDumper.cpp
45
ELFDumper(const
ELFFile
<ELFT> *Obj, StreamWriter &Writer);
71
typedef
ELFFile
<ELFT> ELFO;
197
static std::error_code createELFDumper(const
ELFFile
<ELFT> *Obj,
[
all
...]
/external/llvm/tools/obj2yaml/
elf2yaml.cpp
25
typedef typename object::
ELFFile
<ELFT>::Elf_Shdr Elf_Shdr;
26
typedef typename object::
ELFFile
<ELFT>::Elf_Word Elf_Word;
28
const object::
ELFFile
<ELFT> &Obj;
49
ELFDumper(const object::
ELFFile
<ELFT> &O);
56
ELFDumper<ELFT>::ELFDumper(const object::
ELFFile
<ELFT> &O)
427
const object::
ELFFile
<ELFT> &Obj) {
/system/extras/simpleperf/
read_elf.cpp
104
bool GetBuildIdFromELFFile(const llvm::object::
ELFFile
<ELFT>* elf, BuildId* build_id) {
313
bool ReadMinExecutableVirtualAddress(const llvm::object::
ELFFile
<ELFT>* elf, uint64_t* p_vaddr) {
358
bool ReadSectionFromELFFile(const llvm::object::
ELFFile
<ELFT>* elf, const std::string& section_name,
/external/llvm/tools/yaml2obj/
yaml2elf.cpp
101
typedef typename object::
ELFFile
<ELFT>::Elf_Ehdr Elf_Ehdr;
102
typedef typename object::
ELFFile
<ELFT>::Elf_Shdr Elf_Shdr;
103
typedef typename object::
ELFFile
<ELFT>::Elf_Sym Elf_Sym;
104
typedef typename object::
ELFFile
<ELFT>::Elf_Rel Elf_Rel;
105
typedef typename object::
ELFFile
<ELFT>::Elf_Rela Elf_Rela;
406
typedef typename object::
ELFFile
<ELFT>::Elf_Word Elf_Word;
/system/core/libbacktrace/
BacktraceOffline.cpp
562
DebugFrameInfo* ReadDebugFrameFromELFFile(const llvm::object::
ELFFile
<ELFT>* elf) {
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp
122
typedef typename
ELFFile
<ELFT>::Elf_Shdr Elf_Shdr;
[
all
...]
Completed in 2717 milliseconds