HomeSort by relevance Sort by last modified time
    Searched refs:section_type (Results 1 - 5 of 5) sorted by null

  /art/runtime/
elf_file.cc 248 llvm::ELF::Elf32_Sym* ElfFile::GetSymbolSectionStart(llvm::ELF::Elf32_Word section_type) {
249 CHECK(IsSymbolSectionType(section_type)) << file_->GetPath() << " " << section_type;
251 switch (section_type) {
261 LOG(FATAL) << section_type;
269 const char* ElfFile::GetStringSectionStart(llvm::ELF::Elf32_Word section_type) {
270 CHECK(IsSymbolSectionType(section_type)) << file_->GetPath() << " " << section_type;
272 switch (section_type) {
282 LOG(FATAL) << section_type;
    [all...]
elf_file.h 74 static bool IsSymbolSectionType(::llvm::ELF::Elf32_Word section_type);
76 ::llvm::ELF::Elf32_Sym& GetSymbol(::llvm::ELF::Elf32_Word section_type, ::llvm::ELF::Elf32_Word i);
86 ::llvm::ELF::Elf32_Sym* FindSymbolByName(::llvm::ELF::Elf32_Word section_type,
92 ::llvm::ELF::Elf32_Addr FindSymbolAddress(::llvm::ELF::Elf32_Word section_type,
101 const char* GetString(::llvm::ELF::Elf32_Word section_type, ::llvm::ELF::Elf32_Word);
131 ::llvm::ELF::Elf32_Sym* GetSymbolSectionStart(::llvm::ELF::Elf32_Word section_type);
132 const char* GetStringSectionStart(::llvm::ELF::Elf32_Word section_type);
142 SymbolTable** GetSymbolTable(::llvm::ELF::Elf32_Word section_type);
  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSymbol.hxx 138 unsigned section_type = (*header)[idx]->getType(); local
140 rsl_assert((section_type == SHT_PROGBITS ||
141 section_type == SHT_NOBITS) &&
144 if (section_type == SHT_NOBITS) {
  /art/compiler/
elf_fixup.cc 228 ::llvm::ELF::Elf32_Word section_type = dynamic ? ::llvm::ELF::SHT_DYNSYM : ::llvm::ELF::SHT_SYMTAB; local
230 ::llvm::ELF::Elf32_Shdr* symbol_section = elf_file.FindSectionByType(section_type);
237 ::llvm::ELF::Elf32_Sym& symbol = elf_file.GetSymbol(section_type, i);
  /external/qemu/
savevm.c 1098 uint8_t section_type; local
1117 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1124 switch (section_type) {
1180 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
    [all...]

Completed in 1693 milliseconds