Searched refs:section_name (Results 1 – 5 of 5) sorted by relevance
40 std::string section_name = match[1]; in ParseDirPath() local43 if (!MapContainsKey(conf.sections, section_name)) { in ParseDirPath()44 conf.sections[section_name].name = section_name; in ParseDirPath()45 conf.sections[section_name].namespaces["default"].name = "default"; in ParseDirPath()48 conf.sections[section_name].dirs.push_back(dir_path); in ParseDirPath()228 std::string section_name = match[1]; in ParseConfiguration() local229 ASSERT_TRUE(MapContainsKey(conf.sections, section_name)) << line; in ParseConfiguration()230 current_section = &conf.sections[section_name]; in ParseConfiguration()
250 llvm::Expected<llvm::StringRef> section_name = GetSectionName(*section_it_or_err.get()); in ReadSymbolTable() local251 if (!section_name || section_name.get().empty()) { in ReadSymbolTable()254 if (section_name.get() == ".text") { in ReadSymbolTable()308 llvm::Expected<llvm::StringRef> section_name = GetSectionName(section_ref); in AddSymbolForPltSection() local309 if (!section_name || section_name.get() != ".plt") { in AddSymbolForPltSection()335 llvm::Expected<llvm::StringRef> section_name = GetSectionName(section_ref); in CheckSymbolSections() local336 if (!section_name) { in CheckSymbolSections()339 if (section_name.get() == ".dynsym") { in CheckSymbolSections()341 } else if (section_name.get() == ".symtab") { in CheckSymbolSections()462 ElfStatus ReadSection(const std::string& section_name, std::string* content) override { in ReadSection() argument[all …]
102 virtual ElfStatus ReadSection(const std::string& section_name, std::string* content) = 0;
80 for (const auto& [section_name, section_parser] : section_parsers_) { in ParseData()
1022 section_name = result.group(1).strip()1023 if section_name:1024 section_names.append(section_name)