Searched refs:strtab (Results 1 - 9 of 9) sorted by relevance
/frameworks/compile/mclinker/lib/LD/ |
H A D | ELFDynObjReader.cpp | 115 const char* strtab = strtab_region.begin(); local 117 m_pELFReader->readSymbols(pInput, m_Builder, symtab_region, strtab);
|
H A D | ELFObjectReader.cpp | 296 const char* strtab = strtab_region.begin(); local 298 m_pELFReader->readSymbols(pInput, m_Builder, symtab_region, strtab);
|
H A D | ELFReader.cpp | 435 LDSection* strtab = symtab->getLink(); local 436 assert(symtab != NULL && strtab != NULL); 460 pInput.fileOffset() + strtab->offset(), strtab->size()); 929 LDSection* strtab = symtab->getLink(); local 930 assert(symtab != NULL && strtab != NULL); 954 pInput.fileOffset() + strtab->offset(), strtab->size());
|
H A D | GNUArchiveReader.cpp | 94 // if this is the first time read this archive, setup symtab and strtab 99 // read the strtab of the archive 143 /// @param pArchiveRoot - the archive root that holds the strtab (extended 295 /// readStringTable - read the strtab for long file name of the archive 322 const char* strtab = strtab_region.begin(); local 323 pArchive.getStrTable().assign(strtab, strtab_size); 417 // read the strtab of the archive
|
/frameworks/compile/mclinker/unittests/ |
H A D | ELFReaderTest.cpp | 113 const char* strtab = strtab_region.begin(); local 115 *m_pInput, *m_pIRBuilder, symtab_region, strtab);
|
/frameworks/compile/mclinker/lib/Target/ |
H A D | GNULDBackend.cpp | 710 /// In ELF executable files, regular name pools are .symtab, .strtab, 722 size_t strtab = 1; local 733 /// Compute the size of .symtab, .strtab, and symtab_local_cnt 741 symtab = strtab = 0; 749 strtab += (*symbol)->nameSize() + 1; 839 // .dynstr, .symtab, .strtab and .hash, we can not reserve non-DT_NEEDED 851 file_format->getStrTab().setSize(strtab); 910 /// emitRegNamePools - emit regular name pools - .symtab, .strtab 941 char* strtab = reinterpret_cast<char*>(strtab_region.begin()); local 945 emitSymbol32(symtab32[0], *LDSymbol::Null(), strtab, 1014 char* strtab = reinterpret_cast<char*>(strtab_region.begin()); local [all...] |
/frameworks/compile/mclinker/lib/Target/ARM/ |
H A D | ARMLDBackend.cpp | 703 LDSection& strtab = file_format->getStrTab(); local 705 // increase the size of .symtab and .strtab if needed 713 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() +
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
H A D | HexagonLDBackend.cpp | 580 // increase the size of .symtab and .strtab 582 LDSection& strtab = file_format->getStrTab(); local 584 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
H A D | MipsLDBackend.cpp | 643 // increase the size of .symtab and .strtab 645 LDSection& strtab = getOutputFormat()->getStrTab(); local 647 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
|
Completed in 86 milliseconds