HomeSort by relevance Sort by last modified time
    Searched refs:section_headers (Results 1 - 4 of 4) 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 131 std::vector<base::string16> section_headers = local
133 for (size_t i = 0; i < section_headers.size(); i++) {
138 if (!section_headers[i].empty() && !entries.empty()) {
143 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...]
ObjectFileELF.h 225 GetSectionHeaderInfo(SectionHeaderColl &section_headers,

Completed in 1654 milliseconds