OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ELFRela
(Results
1 - 3
of
3
) sorted by null
/external/lldb/source/Plugins/ObjectFile/ELF/
ELFHeader.h
373
/// @class
ELFRela
375
struct
ELFRela
381
ELFRela
();
383
/// Parse an
ELFRela
entry from the given DataExtractor starting at position
396
/// True if the
ELFRela
entry was successfully read and false otherwise.
402
RelocType32(const
ELFRela
&rela)
409
RelocType64(const
ELFRela
&rela)
417
RelocSymbol32(const
ELFRela
&rela)
425
RelocSymbol64(const
ELFRela
&rela)
ELFHeader.cpp
442
//
ELFRela
444
ELFRela
::
ELFRela
()
446
memset(this, 0, sizeof(
ELFRela
));
450
ELFRela
::Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset)
ObjectFileELF.cpp
40
/// @brief Generic wrapper for ELFRel and
ELFRela
.
42
/// This helper class allows us to parse both ELFRel and
ELFRela
relocation
72
typedef llvm::PointerUnion<ELFRel*,
ELFRela
*> RelocUnion;
82
reloc = new
ELFRela
();
94
delete reloc.get<
ELFRela
*>();
103
return reloc.get<
ELFRela
*>()->Parse(data, offset);
112
return
ELFRela
::RelocType32(*rel.reloc.get<
ELFRela
*>());
121
return
ELFRela
::RelocType64(*rel.reloc.get<
ELFRela
*>());
[
all
...]
Completed in 130 milliseconds