OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RelocationSection
(Results
1 - 4
of
4
) sorted by null
/external/llvm/tools/obj2yaml/
elf2yaml.cpp
32
ELFYAML::
RelocationSection
&S);
37
ErrorOr<ELFYAML::
RelocationSection
*> dumpRelSection(const Elf_Shdr *Shdr);
38
ErrorOr<ELFYAML::
RelocationSection
*> dumpRelaSection(const Elf_Shdr *Shdr);
76
ErrorOr<ELFYAML::
RelocationSection
*> S = dumpRelaSection(&Sec);
83
ErrorOr<ELFYAML::
RelocationSection
*> S = dumpRelSection(&Sec);
205
ELFYAML::
RelocationSection
&S) {
220
ErrorOr<ELFYAML::
RelocationSection
*>
223
auto S = make_unique<ELFYAML::
RelocationSection
>();
240
ErrorOr<ELFYAML::
RelocationSection
*>
243
auto S = make_unique<ELFYAML::
RelocationSection
>();
[
all
...]
/external/llvm/include/llvm/Object/
ELFYAML.h
99
struct
RelocationSection
: Section {
102
RelocationSection
() : Section(SectionKind::Relocation) {}
/external/llvm/tools/yaml2obj/
yaml2elf.cpp
136
const ELFYAML::
RelocationSection
&Section,
215
else if (auto S = dyn_cast<ELFYAML::
RelocationSection
>(Sec.get())) {
331
const ELFYAML::
RelocationSection
&Section,
/external/llvm/lib/Object/
ELFYAML.cpp
687
static void sectionMapping(IO &IO, ELFYAML::
RelocationSection
&Section) {
705
Section.reset(new ELFYAML::
RelocationSection
());
706
sectionMapping(IO, *cast<ELFYAML::
RelocationSection
>(Section.get()));
Completed in 179 milliseconds