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

/frameworks/compile/mclinker/lib/LD/
H A DELFDynObjReader.cpp116 char* strtab = reinterpret_cast<char*>(strtab_region->start()); local
118 *symtab_region, strtab);
H A DELFObjectReader.cpp291 char* strtab = reinterpret_cast<char*>(strtab_region->start()); local
295 strtab);
H A DELFReader.cpp482 LDSection* strtab = symtab->getLink(); local
483 assert(NULL != symtab && NULL != strtab);
508 pInput.fileOffset() + strtab->offset(), strtab->size());
1038 LDSection* strtab = symtab->getLink(); local
1039 assert(NULL != symtab && NULL != strtab);
1064 pInput.fileOffset() + strtab->offset(), strtab->size());
H A DGNUArchiveReader.cpp99 // if this is the first time read this archive, setup symtab and strtab
104 // read the strtab of the archive
148 /// @param pArchiveRoot - the archive root that holds the strtab (extended
292 /// readStringTable - read the strtab for long file name of the archive
321 const char* strtab = local
323 pArchive.getStrTable().assign(strtab, strtab_size);
415 // read the strtab of the archive
/frameworks/compile/mclinker/unittests/
H A DELFReaderTest.cpp119 char* strtab = reinterpret_cast<char*>(strtab_region->start()); local
121 *symtab_region, strtab);
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSymbol.hxx35 size_t const index = shtab.getByName(std::string(".strtab"))->getIndex();
37 ELFSectionStrTabTy const &strtab = local
39 return strtab[getNameIndex()];
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp722 /// In ELF executable files, regular name pools are .symtab, .strtab,
735 size_t strtab = 1; local
747 /// Compute the size of .symtab, .strtab, and symtab_local_cnt
753 strtab += (*symbol)->nameSize() + 1;
842 // .dynstr, .symtab, .strtab and .hash, we can not reserve non-DT_NEEDED
854 file_format->getStrTab().setSize(strtab);
946 /// emitRegNamePools - emit regular name pools - .symtab, .strtab
976 char* strtab = (char*)strtab_region->start(); local
980 emitSymbol32(symtab32[0], *LDSymbol::Null(), strtab, 0, 0);
982 emitSymbol64(symtab64[0], *LDSymbol::Null(), strtab,
1051 char* strtab = (char*)strtab_region->start(); local
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp567 LDSection& strtab = file_format->getStrTab(); local
569 // increase the size of .symtab and .strtab if needed
575 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp603 // increase the size of .symtab and .strtab
605 LDSection& strtab = file_format->getStrTab(); local
607 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);

Completed in 161 milliseconds