HomeSort by relevance Sort by last modified time
    Searched refs:sectiondata (Results 1 - 17 of 17) sorted by null

  /external/elfutils/libdw/
dwarf_getstring.c 32 if (dbg->sectiondata[IDX_debug_str] == NULL
33 || offset >= dbg->sectiondata[IDX_debug_str]->d_size)
40 const char *result = ((const char *) dbg->sectiondata[IDX_debug_str]->d_buf
43 dbg->sectiondata[IDX_debug_str]->d_size - offset);
dwarf_formstring.c 39 || dbg->sectiondata[IDX_debug_str] == NULL)
53 if (off >= dbg->sectiondata[IDX_debug_str]->d_size)
56 return (const char *) dbg->sectiondata[IDX_debug_str]->d_buf + off;
dwarf_offdie.c 32 if (offset >= dbg->sectiondata[IDX_debug_info]->d_size)
42 result->addr = (char *) dbg->sectiondata[IDX_debug_info]->d_buf + offset;
dwarf_getpubnames.c 34 unsigned char *const startp = dbg->sectiondata[IDX_debug_pubnames]->d_buf;
36 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size;
69 if (mem[cnt].set_start >= dbg->sectiondata[IDX_debug_pubnames]->d_size)
89 assert (dbg->sectiondata[IDX_debug_info] != NULL);
90 assert (dbg->sectiondata[IDX_debug_info]->d_buf != NULL);
92 < dbg->sectiondata[IDX_debug_info]->d_size);
94 = ((unsigned char *) dbg->sectiondata[IDX_debug_info]->d_buf
131 if (unlikely (dbg->sectiondata[IDX_debug_pubnames] == NULL
132 || offset >= dbg->sectiondata[IDX_debug_pubnames]->d_size))
159 = (unsigned char *) dbg->sectiondata[IDX_debug_pubnames]->d_buf
    [all...]
dwarf_cuoffset.c 30 - die->cu->dbg->sectiondata[IDX_debug_info]->d_buf
dwarf_dieoffset.c 29 : die->addr - die->cu->dbg->sectiondata[IDX_debug_info]->d_buf);
dwarf_nextcu.c 42 || unlikely (off + 4 >= dwarf->sectiondata[IDX_debug_info]->d_size))
50 char *bytes = (char *) dwarf->sectiondata[IDX_debug_info]->d_buf + off;
88 >= dwarf->sectiondata[IDX_debug_info]->d_size))
124 - ((char *) dwarf->sectiondata[IDX_debug_info]->d_buf
dwarf_getmacros.c 43 = die->cu->dbg->sectiondata[IDX_debug_macinfo]->d_buf + offset;
45 = readp + die->cu->dbg->sectiondata[IDX_debug_macinfo]->d_size;
105 - ((unsigned char *) die->cu->dbg->sectiondata[IDX_debug_macinfo]->d_buf
dwarf_getaranges.c 48 if (dbg->sectiondata[IDX_debug_aranges]->d_buf == NULL)
55 = (const char *) dbg->sectiondata[IDX_debug_aranges]->d_buf;
56 const char *readendp = readp + dbg->sectiondata[IDX_debug_aranges]->d_size;
142 const char *cu_header = (dbg->sectiondata[IDX_debug_info]->d_buf
dwarf_formblock.c 64 > ((unsigned char *) attr->cu->dbg->sectiondata[IDX_debug_info]->d_buf
65 + attr->cu->dbg->sectiondata[IDX_debug_info]->d_size))
dwarf_getattrs.c 54 >= ((unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf
55 + dbg->sectiondata[IDX_debug_abbrev]->d_size)))
dwarf_siblingof.c 61 sibattr.cu->dbg->sectiondata[IDX_debug_info]->d_buf
89 >= ((unsigned char *) sibattr.cu->dbg->sectiondata[IDX_debug_info]->d_buf
dwarf_child.c 54 = ((unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf
55 + dbg->sectiondata[IDX_debug_abbrev]->d_size);
dwarf_getabbrev.c 34 if (dbg->sectiondata[IDX_debug_abbrev] == NULL)
38 = (unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf + offset;
dwarf_begin_elf.c 94 if (unlikely (result->sectiondata[cnt] != NULL))
102 result->sectiondata[cnt] = data;
119 if (unlikely (result->sectiondata[IDX_debug_info] == NULL))
dwarf_getsrclines.c 91 if (dbg->sectiondata[IDX_debug_line] == NULL)
96 uint8_t *linep = dbg->sectiondata[IDX_debug_line]->d_buf + offset;
97 uint8_t *lineendp = (dbg->sectiondata[IDX_debug_line]->d_buf
98 + dbg->sectiondata[IDX_debug_line]->d_size);
libdwP.h 110 Elf_Data *sectiondata[IDX_last]; member in struct:Dwarf

Completed in 217 milliseconds