OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:section_headers
(Results
1 - 2
of
2
) sorted by null
/art/compiler/
elf_writer_quick.cc
469
llvm::ELF::Elf32_Shdr
section_headers
[SH_NUM];
local
470
memset(&
section_headers
, 0, sizeof(
section_headers
));
472
section_headers
[SH_NULL].sh_name = 0;
473
section_headers
[SH_NULL].sh_type = llvm::ELF::SHT_NULL;
474
section_headers
[SH_NULL].sh_flags = 0;
475
section_headers
[SH_NULL].sh_addr = 0;
476
section_headers
[SH_NULL].sh_offset = 0;
477
section_headers
[SH_NULL].sh_size = 0;
478
section_headers
[SH_NULL].sh_link = 0
[
all
...]
elf_stripper.cc
66
std::vector<llvm::ELF::Elf32_Shdr>
section_headers
;
local
68
section_headers
.reserve(elf_file->GetSectionHeaderNum());
77
section_headers
.push_back(sh);
86
section_headers
.push_back(sh);
89
CHECK_NE(0U,
section_headers
.size());
90
CHECK_EQ(
section_headers
.size(), section_headers_original_indexes.size());
94
for (size_t i = 1; i <
section_headers
.size(); i++) {
95
llvm::ELF::Elf32_Shdr& new_sh =
section_headers
[i];
115
size_t section_headers_size_in_bytes =
section_headers
.size() * sizeof(llvm::ELF::Elf32_Shdr);
116
memcpy(elf_file->Begin() + offset, &
section_headers
[0], section_headers_size_in_bytes)
[
all
...]
Completed in 128 milliseconds