Lines Matching refs:secName
206 std::string secName;
207 if (!GetSectionNameByIndex(secName, shdr.sh_name)) {
212 if (shdr.sh_size != 0 && secName == GNU_DEBUGDATA) {
223 shdrInfoPairs_.emplace(std::make_pair(i, secName), shdrInfo);
443 bool ElfParser::GetSectionInfo(ShdrInfo& shdr, const std::string& secName)
447 if (tmpPair.second == secName) {
455 bool ElfParser::GetSectionData(unsigned char *buf, uint64_t size, std::string secName)
458 if (GetSectionInfo(shdr, secName)) {
463 DFXLOGE("Failed to get data from secName %{public}s", secName.c_str());