Searched refs:nscopes (Results 1 – 5 of 5) sorted by relevance
/external/elfutils/libdw/ |
D | dwarf_getscopes.c | 64 unsigned int inlined, nscopes; member 118 unsigned int nscopes = a->nscopes + depth; in origin_match() local 119 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]); in origin_match() 131 scopes[a->nscopes++] = die->die; in origin_match() 133 while (a->nscopes < nscopes); in origin_match() 135 return a->nscopes; in origin_match() 151 a->nscopes = depth + 1 - a->inlined; in pc_record() 152 a->scopes = malloc (a->nscopes * sizeof a->scopes[0]); in pc_record() 159 for (unsigned int i = 0; i < a->nscopes; ++i) in pc_record() 168 return a->nscopes; in pc_record()
|
D | dwarf_getscopevar.c | 87 dwarf_getscopevar (Dwarf_Die *scopes, int nscopes, in dwarf_getscopevar() argument 114 for (int out = 0; out < nscopes; ++out) in dwarf_getscopevar()
|
D | libdw.h | 549 extern int dwarf_getscopevar (Dwarf_Die *scopes, int nscopes,
|
/external/elfutils/src/ |
D | addr2line.c | 234 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes); in print_dwarf_function() local 235 if (nscopes <= 0) in print_dwarf_function() 238 for (int i = 0; i < nscopes; ++i) in print_dwarf_function()
|
/external/linux-tools-perf/util/ |
D | probe-finder.c | 1144 int ret, nscopes; in find_variable() local 1186 nscopes = dwarf_getscopes_die(sp_die, &scopes); in find_variable() 1187 while (nscopes-- > 1) { in find_variable() 1189 dwarf_diename(&scopes[nscopes])); in find_variable() 1191 if (die_find_variable_at(&scopes[nscopes], in find_variable() 1703 int ret, nscopes; in add_available_vars() local 1732 nscopes = dwarf_getscopes_die(sp_die, &scopes); in add_available_vars() 1733 while (nscopes-- > 1) in add_available_vars() 1734 die_find_child(&scopes[nscopes], collect_variables_cb, in add_available_vars()
|