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

  /external/elfutils/libdw/
dwarf_getscopes.c 43 unsigned int inlined, nscopes; member in struct:args
96 function of which A->scopes[A->nscopes - 1] is a concrete instance.
99 unsigned int nscopes = a->nscopes + depth; local
100 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]);
112 scopes[a->nscopes++] = die->die;
114 while (a->nscopes < nscopes);
116 return a->nscopes;
132 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     [all...]
  /external/elfutils/src/
addr2line.c 315 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes); local
316 if (nscopes <= 0)
320 for (int i = 0; i < nscopes; ++i)
728 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes); local
729 if (nscopes < 0)
732 if (nscopes > 0)
741 nscopes = dwarf_getscopes_die (&subroutine, &scopes);
742 if (nscopes > 1)
749 for (int i = 0; i < nscopes - 1; i++)
765 for (int j = i + 1; j < nscopes; j++
    [all...]
stack.c 323 int nscopes = dwarf_getscopes_die (die, &scopes); local
324 if (nscopes > 0)
335 for (int i = 1; i < nscopes && (maxframes == 0 || *nr < maxframes); i++)
386 int nscopes = dwarf_getscopes (cudie, pc_adjusted - bias, local
390 for (int i = 0; symname == NULL && i < nscopes; i++)

Completed in 104 milliseconds