Searched defs:nscopes (Results 1 - 4 of 4) sorted by relevance

/external/elfutils/libdw/
H A Ddwarf_getscopes.c64 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
[all...]
H A Ddwarf_getscopevar.c87 dwarf_getscopevar (Dwarf_Die *scopes, int nscopes, argument
114 for (int out = 0; out < nscopes; ++out)
/external/elfutils/src/
H A Daddr2line.c234 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/
H A Dprobe-finder.c1144 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
1732 nscopes = dwarf_getscopes_die(sp_die, &scopes);
1733 while (nscopes-- > 1)
1734 die_find_child(&scopes[nscopes], collect_variables_cb,

Completed in 492 milliseconds