Lines Matching defs:data
87 /// data member as returned by the GELF_ST_VISIBILITY macro into a
90 /// @param stv the value of the ->st_other data member of the ELF
339 /// Elf32_Shdr::sh_type (or Elf64_Shdr::sh_type) data member.
372 /// Elf32_Shdr::sh_type (or Elf64_Shdr::sh_type) data member.
540 /// Find and return the .data section.
544 /// @return the .data section found.
547 {return find_section(elf_handle, ".data", SHT_PROGBITS);}
1164 // the offset we want read the data from.
1168 // A pointer to the data of the .opd section, that we can actually
1385 /// Get data tag information of an ELF file by looking up into its
1390 /// @param dt_tag data tag to look for in dynamic segment
1393 /// @return true iff data tag @p data_tag was found
1414 // the data of the segment by using elf_getdata() but that
1415 // function needs a Elf_Scn data structure to act on.
1417 // access segment data, other than the functions used to
1418 // access section data.
1427 // Get data of the dynamic segment (seen as a section).
1428 Elf_Data *data = elf_getdata(dynamic_section, NULL);
1429 if (data == NULL)
1450 // Now walk through all the DT_* data tags that are in the
1455 GElf_Dyn *dynamic_section = gelf_getdyn(data,
1529 Elf_Data* data = elf_getdata (scn, NULL);
1530 if (data == NULL)
1536 GElf_Dyn* dyn = gelf_getdyn (data, cnt, &dynmem);