OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:symbol_section
(Results
1 - 2
of
2
) sorted by null
/art/compiler/
elf_fixup.cc
230
::llvm::ELF::Elf32_Shdr*
symbol_section
= elf_file.FindSectionByType(section_type);
local
231
if (
symbol_section
== NULL) {
236
for (uint32_t i = 0; i < elf_file.GetSymbolNum(*
symbol_section
); i++) {
/art/runtime/
elf_file.cc
448
llvm::ELF::Elf32_Shdr*
symbol_section
= FindSectionByType(section_type);
local
449
CHECK(
symbol_section
!= NULL) << file_->GetPath();
450
llvm::ELF::Elf32_Shdr& string_section = GetSectionHeader(
symbol_section
->sh_link);
451
for (uint32_t i = 0; i < GetSymbolNum(*
symbol_section
); i++) {
481
llvm::ELF::Elf32_Shdr*
symbol_section
= FindSectionByType(section_type);
local
482
CHECK(
symbol_section
!= NULL) << file_->GetPath();
483
llvm::ELF::Elf32_Shdr& string_section = GetSectionHeader(
symbol_section
->sh_link);
484
for (uint32_t i = 0; i < GetSymbolNum(*
symbol_section
); i++) {
Completed in 180 milliseconds