OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:section_headers
(Results
1 - 3
of
3
) sorted by null
/art/compiler/
elf_stripper.cc
70
std::vector<Elf32_Shdr>
section_headers
;
local
72
section_headers
.reserve(elf_file->GetSectionHeaderNum());
83
section_headers
.push_back(*sh);
92
section_headers
.push_back(*sh);
95
CHECK_NE(0U,
section_headers
.size());
96
CHECK_EQ(
section_headers
.size(), section_headers_original_indexes.size());
101
for (size_t i = 1; i <
section_headers
.size(); i++) {
102
Elf32_Shdr& new_sh =
section_headers
[i];
123
size_t section_headers_size_in_bytes =
section_headers
.size() * sizeof(Elf32_Shdr);
124
memcpy(elf_file->Begin() + offset, &
section_headers
[0], section_headers_size_in_bytes)
[
all
...]
/external/chromium_org/chrome/browser/ui/views/extensions/
media_galleries_dialog_views.cc
129
std::vector<base::string16>
section_headers
=
local
131
for (size_t i = 0; i <
section_headers
.size(); i++) {
136
if (!
section_headers
[i].empty() && !entries.empty()) {
141
views::Label* header = new views::Label(
section_headers
[i]);
/external/lldb/source/Plugins/ObjectFile/ELF/
ObjectFileELF.cpp
347
SectionHeaderColl
section_headers
;
local
349
GetSectionHeaderInfo(
section_headers
, data, header, uuid, gnu_debuglink_file, gnu_debuglink_crc);
719
ObjectFileELF::GetSectionHeaderInfo(SectionHeaderColl &
section_headers
,
727
if (!
section_headers
.empty())
728
return
section_headers
.size();
734
section_headers
.resize(header.e_shnum);
735
if (
section_headers
.size() != header.e_shnum)
748
if (
section_headers
[idx].Parse(sh_data, &offset) == false)
751
if (idx <
section_headers
.size())
752
section_headers
.resize(idx)
[
all
...]
Completed in 6751 milliseconds