/external/elfutils/libdw/ |
dwarf_getscopes.c | 43 unsigned int inlined, nscopes; member in struct:args 94 function of which A->scopes[A->nscopes - 1] is a concrete instance. 97 unsigned int nscopes = a->nscopes + depth; local 98 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]); 110 scopes[a->nscopes++] = die->die; 112 while (a->nscopes < nscopes); 114 return a->nscopes; 130 a->nscopes = depth + 1 - a->inlined [all...] |
dwarf_getscopevar.c | 75 /* Search SCOPES[0..NSCOPES-1] for a variable called NAME. 86 dwarf_getscopevar (Dwarf_Die *scopes, int nscopes, 97 for (int out = 0; out < nscopes; ++out)
|
libdw.h | 771 /* Search SCOPES[0..NSCOPES-1] for a variable called NAME. 780 extern int dwarf_getscopevar (Dwarf_Die *scopes, int nscopes, [all...] |
/external/elfutils/src/ |
addr2line.c | 329 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes); local 330 if (nscopes <= 0) 334 for (int i = 0; i < nscopes; ++i) 741 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes); local 742 if (nscopes < 0) 745 if (nscopes > 0) 754 nscopes = dwarf_getscopes_die (&subroutine, &scopes); 755 if (nscopes > 1) 762 for (int i = 0; i < nscopes - 1; i++) 778 for (int j = i + 1; j < nscopes; j++ [all...] |
stack.c | 324 int nscopes = dwarf_getscopes_die (die, &scopes); local 325 if (nscopes > 0) 336 for (int i = 1; i < nscopes && (maxframes == 0 || *nr < maxframes); i++) 387 int nscopes = dwarf_getscopes (cudie, pc_adjusted - bias, local 391 for (int i = 0; symname == NULL && i < nscopes; i++)
|
/external/valgrind/coregrind/m_debuginfo/ |
debuginfo.c | [all...] |
/external/skia/platform_tools/android/bin/linux/ |
perfhost | |