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

  /external/elfutils/libdw/
dwarf_getscopes.c 64 unsigned int inlined, nscopes; member in struct:args
115 function of which A->scopes[A->nscopes - 1] is a concrete instance.
118 unsigned int nscopes = a->nscopes + depth; local
119 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]);
131 scopes[a->nscopes++] = die->die;
133 while (a->nscopes < nscopes);
135 return a->nscopes;
151 a->nscopes = depth + 1 - a->inlined
    [all...]
  /external/elfutils/src/
addr2line.c 234 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes); local
235 if (nscopes <= 0)
238 for (int i = 0; i < nscopes; ++i)
  /external/linux-tools-perf/util/
probe-finder.c 1144 int ret, nscopes; local
1186 nscopes = dwarf_getscopes_die(sp_die, &scopes);
1187 while (nscopes-- > 1) {
1189 dwarf_diename(&scopes[nscopes]));
1191 if (die_find_variable_at(&scopes[nscopes],
1703 int ret, nscopes; local
    [all...]

Completed in 491 milliseconds