Searched refs:section_header (Results 1 – 9 of 9) sorted by relevance
/external/perf_data_converter/src/quipper/ |
D | dso_test_utils.cc | 112 GElf_Shdr section_header; in WriteElfWithMultipleBuildids() local 113 CHECK(gelf_getshdr(section, §ion_header)) << elf_errmsg(-1); in WriteElfWithMultipleBuildids() 114 section_header.sh_name = string_table.Add(section_name); in WriteElfWithMultipleBuildids() 115 section_header.sh_type = SHT_NOTE; in WriteElfWithMultipleBuildids() 116 CHECK(gelf_update_shdr(section, §ion_header)) << elf_errmsg(-1); in WriteElfWithMultipleBuildids() 138 GElf_Shdr section_header; in WriteElfWithMultipleBuildids() local 139 CHECK(gelf_getshdr(section, §ion_header)) << elf_errmsg(-1); in WriteElfWithMultipleBuildids() 140 section_header.sh_name = string_table.Add(".shstrtab"); in WriteElfWithMultipleBuildids() 141 section_header.sh_type = SHT_STRTAB; in WriteElfWithMultipleBuildids() 142 CHECK(gelf_update_shdr(section, §ion_header)) << elf_errmsg(-1); in WriteElfWithMultipleBuildids()
|
/external/mesa3d/src/amd/common/ |
D | ac_binary.c | 134 GElf_Shdr section_header; in ac_elf_read() local 135 if (gelf_getshdr(section, §ion_header) != §ion_header) { in ac_elf_read() 140 name = elf_strptr(elf, section_str_index, section_header.sh_name); in ac_elf_read() 168 symbol_sh_link = section_header.sh_link; in ac_elf_read() 169 parse_symbol_table(symbols, §ion_header, binary); in ac_elf_read() 172 binary->reloc_count = section_header.sh_size / in ac_elf_read() 173 section_header.sh_entsize; in ac_elf_read()
|
/external/autotest/client/site_tests/webstore_SanityTest/ |
D | webstore_SanityTest.py | 14 def section_header(self, name): member in webstore_SanityTest 31 self.driver.find_element_by_xpath(self.section_header(section))
|
/external/dynamic_depth/internal/xmpmeta/ |
D | jpeg_io.cc | 159 (options.section_header.empty() || in Parse() 160 HasPrefixString(section.data, options.section_header))) { in Parse()
|
D | xmp_parser.cc | 192 parse_options.section_header = XmpConst::Header(); in ExtractXmpMeta()
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | evergreen_compute.c | 282 GElf_Shdr section_header; in r600_elf_read() local 283 if (gelf_getshdr(section, §ion_header) != §ion_header) { in r600_elf_read() 287 name = elf_strptr(elf, section_str_index, section_header.sh_name); in r600_elf_read() 310 symbol_sh_link = section_header.sh_link; in r600_elf_read() 311 parse_symbol_table(symbols, §ion_header, binary); in r600_elf_read() 314 binary->reloc_count = section_header.sh_size / in r600_elf_read() 315 section_header.sh_entsize; in r600_elf_read()
|
/external/dynamic_depth/includes/xmpmeta/ |
D | jpeg_io.h | 41 string section_header; member
|
/external/bcc/src/python/bcc/ |
D | table.py | 294 def print_log2_hist(self, val_type="value", section_header="Bucket ptr", argument 335 print("\n%s = %s" % (section_header, 338 print("\n%s = %r" % (section_header, bucket)) 346 def print_linear_hist(self, val_type="value", section_header="Bucket ptr", argument 384 print("\n%s = %s" % (section_header, 387 print("\n%s = %r" % (section_header, bucket))
|
/external/bcc/docs/ |
D | reference_guide.md | 1341 Syntax: ```table.print_log2_hist(val_type="value", section_header="Bucket ptr", section_print_fn=No… 1348 - section_header: if the histogram has a secondary key, multiple tables will print and section_head… 1392 Syntax: ```table.print_linear_hist(val_type="value", section_header="Bucket ptr", section_print_fn=… 1399 - section_header: if the histogram has a secondary key, multiple tables will print and section_head…
|