/external/elfutils/src/ |
D | elflint.c | 314 section_name (Ebl *ebl, int idx) in section_name() function 575 idx, section_name (ebl, idx)); in check_scn_group() 579 idx, section_name (ebl, idx), in check_scn_group() 580 cnt, section_name (ebl, cnt)); in check_scn_group() 594 idx, section_name (ebl, idx)); in check_symtab() 607 shdr->sh_link, section_name (ebl, shdr->sh_link), in check_symtab() 608 idx, section_name (ebl, idx)); in check_symtab() 631 idx, section_name (ebl, idx)); in check_symtab() 643 idx, section_name (ebl, idx)); in check_symtab() 651 idx, section_name (ebl, idx), 0, elf_errmsg (-1)); in check_symtab() [all …]
|
D | ldscript.y | 234 $$->val.section.input->val.section->section_name = 285 $$->section_name = $4;
|
/external/toolchain-utils/cros_utils/ |
D | perf_diff.py | 173 def _GetHumanReadableName(self, section_name): argument 174 if not 'raw' in section_name: 175 return section_name 176 raw_number = section_name.strip().split(' ')[-1] 212 for section_name in section_names: 213 if section_name in report.sections: 214 d[section_name] = report.sections[section_name].count 219 for section_name in section_names: 220 function_names = self._GetTopFunctions(section_name, self._num_symbols) 221 self._FindCommonFunctions(section_name) [all …]
|
/external/autotest/client/cros/faft/utils/ |
D | saft_flashrom_util.py | 260 def get_section(self, base_image, section_name): argument 265 if section_name not in self.firmware_layout: 267 pos = self.firmware_layout[section_name] 270 section_name) 275 if section_name in ('FVMAIN', 'FVMAINB', 'ECMAINA', 'ECMAINB'): 282 def put_section(self, base_image, section_name, data): argument 288 pos = self.firmware_layout[section_name] 293 if (len(data) < pos[1] - pos[0] + 1 and section_name in
|
D | flashrom_handler.py | 457 section_name = 'FV_GBB' 458 gbb_section = self.fum.get_section(self.image, section_name) 464 self.write_partial(section_name, gbb_section, write_through)
|
/external/google-breakpad/src/common/linux/ |
D | elfutils.cc | 44 const char *section_name, in FindElfClassSection() argument 68 FindElfSectionByName<ElfClass>(section_name, section_type, in FindElfClassSection() 122 const char *section_name, in FindElfSection() argument 146 FindElfClassSection<ElfClass32>(elf_base, section_name, section_type, in FindElfSection() 150 FindElfClassSection<ElfClass64>(elf_base, section_name, section_type, in FindElfSection()
|
D | elfutils-inl.h | 62 const char* section_name = section_names + sections[i].sh_name; in FindElfSectionByName() local 64 names_end - section_name >= name_len + 1 && in FindElfSectionByName() 65 my_strcmp(name, section_name) == 0) { in FindElfSectionByName()
|
D | elfutils.h | 79 const char *section_name,
|
D | dump_symbols.cc | 318 const char* section_name, in LoadDwarfCFI() argument 344 DwarfCFIToModule::Reporter module_reporter(dwarf_filename, section_name); in LoadDwarfCFI() 359 section_name); in LoadDwarfCFI()
|
/external/perf_data_converter/src/quipper/ |
D | dso_test_utils.cc | 76 void WriteElfWithBuildid(string filename, string section_name, string buildid) { in WriteElfWithBuildid() argument 78 std::make_pair(section_name, buildid)}; in WriteElfWithBuildid() 108 const string §ion_name = entry.first; in WriteElfWithMultipleBuildids() local 114 section_header.sh_name = string_table.Add(section_name); in WriteElfWithMultipleBuildids()
|
D | dso_test_utils.h | 16 void WriteElfWithBuildid(string filename, string section_name, string buildid);
|
/external/adhd/cras/src/server/ |
D | cras_alsa_ucm.c | 55 struct section_name { struct 57 struct section_name *prev, *next; argument 238 static struct section_name * ucm_get_sections_for_var( in ucm_get_sections_for_var() 245 struct section_name *section_names = NULL, *s_name; in ucm_get_sections_for_var() 267 s_name = (struct section_name *)malloc( in ucm_get_sections_for_var() 268 sizeof(struct section_name)); in ucm_get_sections_for_var() 286 static struct section_name *ucm_get_devices_for_var( in ucm_get_devices_for_var() 292 struct section_name *section_names; in ucm_get_devices_for_var() 534 struct section_name *section_names, *c; in ucm_get_dev_for_jack() 565 struct section_name *section_names, *c; in ucm_get_dev_for_mixer() [all …]
|
D | cras_alsa_ucm.h | 340 const char *section_name, void *arg);
|
/external/google-breakpad/src/common/solaris/ |
D | file_id.cc | 109 const char *section_name = elf_strptr(elf, elf_header.e_shstrndx, in FindElfTextSection() local 111 if (!section_name) { in FindElfTextSection() 116 if (strcmp(section_name, kTextSectionName) == 0) { in FindElfTextSection()
|
D | dump_symbols.cc | 232 const char *section_name = elf_strptr(elf, shstrndx, shdr->sh_name); in FindSectionByName() local 233 if (!section_name) { in FindSectionByName() 238 if (strcmp(section_name, name) == 0) in FindSectionByName()
|
/external/autotest/client/common_lib/ |
D | software_manager.py | 439 section_name = 'software_manager' + '_' + generate_random_string(4) 440 if not self.cfgparser.has_section(section_name): 442 self.cfgparser.add_section(section_name) 443 self.cfgparser.set(section_name, 'name', 445 self.cfgparser.set(section_name, 'url', url) 446 self.cfgparser.set(section_name, 'enabled', 1) 447 self.cfgparser.set(section_name, 'gpgcheck', 0)
|
/external/freetype/src/tools/docmaker/ |
D | content.py | 414 def set_section( self, section_name ): argument 416 if not section_name in self.sections: 417 section = DocSection( section_name ) 418 self.sections[section_name] = section 421 self.section = self.sections[section_name]
|
/external/google-breakpad/src/common/mac/ |
D | macho_reader.cc | 465 .CString(§ion.section_name, 16) in WalkSegmentSections() 498 reporter_->MisplacedSectionData(section.section_name, in WalkSegmentSections() 519 (*map_)[section.section_name] = section; in HandleSection()
|
D | macho_reader_unittest.cc | 613 SegmentLoadCommand &AppendSectionEntry(const string §ion_name, in AppendSectionEntry() argument 617 AppendCString(section_name, 16); in AppendSectionEntry() 1344 Matcher<const string &> section_name, in MatchSection() argument 1351 Field(&Section::section_name, section_name), in MatchSection() 1361 Matcher<const string &> section_name, in MatchSection() argument 1365 Field(&Section::section_name, section_name), in MatchSection()
|
D | macho_reader.h | 199 string section_name; // section[_64].sectname member
|
/external/elfutils/libebl/ |
D | eblsectionname.c | 42 const char *res = ebl != NULL ? ebl->section_name (section, xsection, in ebl_section_name()
|
D | ebl-hooks.h | 54 const char *EBLHOOK(section_name) (int, int, char *, size_t);
|
/external/vixl/examples/aarch32/ |
D | disasm-a32.cc | 109 const std::string& section_name) const { in Locate() 112 std::string(shstrtab_ + shdr_[shnum].sh_name) == section_name) { in Locate()
|
/external/google-breakpad/src/common/ |
D | dwarf_cu_to_module.h | 185 virtual void MissingSection(const string §ion_name);
|
/external/google-breakpad/src/tools/mac/dump_syms/ |
D | macho_dump.cc | 82 index_++, section.section_name.c_str(), section.segment_name.c_str(), in HandleSection()
|