Home
last modified time | relevance | path

Searched refs:section_name (Results 1 – 5 of 5) sorted by relevance

/system/linkerconfig/contents/tests/configuration/include/
Dlinkerconfigparser.h40 std::string section_name = match[1]; in ParseDirPath() local
43 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() local
229 ASSERT_TRUE(MapContainsKey(conf.sections, section_name)) << line; in ParseConfiguration()
230 current_section = &conf.sections[section_name]; in ParseConfiguration()
/system/extras/simpleperf/
Dread_elf.cpp250 llvm::Expected<llvm::StringRef> section_name = GetSectionName(*section_it_or_err.get()); in ReadSymbolTable() local
251 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() local
309 if (!section_name || section_name.get() != ".plt") { in AddSymbolForPltSection()
335 llvm::Expected<llvm::StringRef> section_name = GetSectionName(section_ref); in CheckSymbolSections() local
336 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 …]
Dread_elf.h102 virtual ElfStatus ReadSection(const std::string& section_name, std::string* content) = 0;
/system/core/init/
Dparser.cpp80 for (const auto& [section_name, section_parser] : section_parsers_) { in ParseData()
/system/extras/simpleperf/scripts/
Dsimpleperf_utils.py1022 section_name = result.group(1).strip()
1023 if section_name:
1024 section_names.append(section_name)