Searched refs:shTable (Results 1 – 1 of 1) sorted by relevance
109 static int readSectionHeadersAll(ifstream& elfFile, vector<Elf64_Shdr>& shTable) { in readSectionHeadersAll() argument120 shTable.resize(eh.e_shnum); in readSectionHeadersAll()122 if (!elfFile.read((char*)shTable.data(), (eh.e_shnum * eh.e_shentsize))) return -ENOMEM; in readSectionHeadersAll()129 vector<Elf64_Shdr> shTable; in readSectionByIdx() local132 ret = readSectionHeadersAll(elfFile, shTable); in readSectionByIdx()134 entries = shTable.size(); in readSectionByIdx()136 elfFile.seekg(shTable[id].sh_offset); in readSectionByIdx()139 sec.resize(shTable[id].sh_size); in readSectionByIdx()140 if (!elfFile.read(sec.data(), shTable[id].sh_size)) return -1; in readSectionByIdx()176 vector<Elf64_Shdr> shTable; in readSectionByName() local[all …]