Searched refs:section_headers (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Delf_file.cc1437 std::vector<Elf_Shdr> section_headers; local
1439 section_headers.reserve(GetSectionHeaderNum());
1450 section_headers.push_back(*sh);
1459 section_headers.push_back(*sh);
1462 CHECK_NE(0U, section_headers.size());
1463 CHECK_EQ(section_headers.size(), section_headers_original_indexes.size());
1468 for (size_t i = 1; i < section_headers.size(); i++) {
1469 Elf_Shdr& new_sh = section_headers[i];
1490 size_t section_headers_size_in_bytes = section_headers.size() * sizeof(Elf_Shdr);
1491 memcpy(Begin() + offset, &section_headers[
[all...]

Completed in 34 milliseconds