Searched refs:nscopes (Results 1 – 6 of 6) sorted by relevance
/external/elfutils/libdw/ |
D | dwarf_getscopes.c | 43 unsigned int inlined, nscopes; member 99 unsigned int nscopes = a->nscopes + depth; in origin_match() local 100 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]); in origin_match() 112 scopes[a->nscopes++] = die->die; in origin_match() 114 while (a->nscopes < nscopes); in origin_match() 116 return a->nscopes; in origin_match() 132 a->nscopes = depth + 1 - a->inlined; in pc_record() 133 a->scopes = malloc (a->nscopes * sizeof a->scopes[0]); in pc_record() 140 for (unsigned int i = 0; i < a->nscopes; ++i) in pc_record() 149 return a->nscopes; in pc_record()
|
D | dwarf_getscopevar.c | 86 dwarf_getscopevar (Dwarf_Die *scopes, int nscopes, in dwarf_getscopevar() argument 97 for (int out = 0; out < nscopes; ++out) in dwarf_getscopevar()
|
D | libdw.h | 855 extern int dwarf_getscopevar (Dwarf_Die *scopes, int nscopes,
|
/external/elfutils/src/ |
D | addr2line.c | 315 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes); in print_dwarf_function() local 316 if (nscopes <= 0) in print_dwarf_function() 320 for (int i = 0; i < nscopes; ++i) in print_dwarf_function() 733 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes); in handle_address() local 734 if (nscopes < 0) in handle_address() 737 if (nscopes > 0) in handle_address() 746 nscopes = dwarf_getscopes_die (&subroutine, &scopes); in handle_address() 747 if (nscopes > 1) in handle_address() 754 for (int i = 0; i < nscopes - 1; i++) in handle_address() 770 for (int j = i + 1; j < nscopes; j++) in handle_address()
|
D | stack.c | 328 int nscopes = dwarf_getscopes_die (die, &scopes); in print_inline_frames() local 329 if (nscopes > 0) in print_inline_frames() 340 for (int i = 1; i < nscopes && (maxframes == 0 || *nr < maxframes); i++) in print_inline_frames() 391 int nscopes = dwarf_getscopes (cudie, pc_adjusted - bias, in print_frames() local 395 for (int i = 0; symname == NULL && i < nscopes; i++) in print_frames()
|
/external/elfutils/include/elfutils/ |
D | libdw.h | 855 extern int dwarf_getscopevar (Dwarf_Die *scopes, int nscopes,
|