Searched refs:shTable (Results 1 – 1 of 1) sorted by relevance
219 static int readSectionHeadersAll(ifstream& elfFile, vector<Elf64_Shdr>& shTable) { in readSectionHeadersAll() argument230 shTable.resize(eh.e_shnum); in readSectionHeadersAll()232 if (!elfFile.read((char*)shTable.data(), (eh.e_shnum * eh.e_shentsize))) return -ENOMEM; in readSectionHeadersAll()239 vector<Elf64_Shdr> shTable; in readSectionByIdx() local240 int ret = readSectionHeadersAll(elfFile, shTable); in readSectionByIdx()243 elfFile.seekg(shTable[id].sh_offset); in readSectionByIdx()246 sec.resize(shTable[id].sh_size); in readSectionByIdx()247 if (!elfFile.read(sec.data(), shTable[id].sh_size)) return -1; in readSectionByIdx()281 vector<Elf64_Shdr> shTable; in readSectionByName() local284 ret = readSectionHeadersAll(elfFile, shTable); in readSectionByName()[all …]