Lines Matching refs:scopes
42 Dwarf_Die *scopes;
53 if (a->scopes != NULL)
96 function of which A->scopes[A->nscopes - 1] is a concrete instance.
100 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]);
101 if (scopes == NULL)
103 free (a->scopes);
108 a->scopes = scopes;
112 scopes[a->nscopes++] = die->die;
128 if (a->scopes == NULL)
133 a->scopes = malloc (a->nscopes * sizeof a->scopes[0]);
134 if (a->scopes == NULL)
142 a->scopes[i] = die->die;
154 Dwarf_Die *const inlinedie = &a->scopes[depth - a->inlined];
167 /* We've recorded the scopes back to one that is a concrete inlined
186 dwarf_getscopes (Dwarf_Die *cudie, Dwarf_Addr pc, Dwarf_Die **scopes)
196 if (result == 0 && a.scopes != NULL)
200 *scopes = a.scopes;