HomeSort by relevance Sort by last modified time
    Searched defs:shdr_info (Results 1 - 3 of 3) sorted by null

  /build/tools/soslim/
soslim.c 41 int dynamic_idx = -1; /* index in shdr_info[] of .dynamic section */
42 int dynsym_idx = -1; /* index in shdr_info[] of dynamic symbol table
53 shdr_info_t *shdr_info = NULL; local
103 an extra entry in the shdr_info array, it does not mean that we create
110 shdr_info = (shdr_info_t *)CALLOC(shdr_info_len, sizeof (shdr_info_t));
121 shdr_info[cnt].scn = scn;
122 FAILIF_LIBELF(NULL == gelf_getshdr(scn, &shdr_info[cnt].shdr),
126 shdr_info[cnt].name = elf_strptr (elf, shstrndx,
127 shdr_info[cnt].shdr.sh_name);
129 INFO("\tname: %s\n", shdr_info[cnt].name)
    [all...]
  /build/tools/apriori/
source.h 57 shdr_info_t *shdr_info; member in struct:source_t
  /external/elfutils/src/
strip.c 376 struct shdr_info struct
391 } *shdr_info = NULL; local
539 if ((shnum + 2) * sizeof (struct shdr_info) > MAX_STACK_ALLOC)
540 shdr_info = (struct shdr_info *) xcalloc (shnum + 2,
541 sizeof (struct shdr_info));
544 shdr_info = (struct shdr_info *) alloca ((shnum + 2)
545 * sizeof (struct shdr_info));
546 memset (shdr_info, '\0', (shnum + 2) * sizeof (struct shdr_info))
    [all...]

Completed in 3067 milliseconds