Searched defs:scopes (Results 1 - 16 of 16) sorted by relevance

/external/elfutils/libdw/
H A Ddwarf_getscopes_die.c63 Dwarf_Die *scopes = malloc (depth * sizeof scopes[0]);
64 if (scopes == NULL)
73 scopes[i++] = die->die;
79 *(void **) arg = scopes;
84 dwarf_getscopes_die (Dwarf_Die *die, Dwarf_Die **scopes) argument
93 *scopes = info;
H A Ddwarf_getscopes.c63 Dwarf_Die *scopes; member in struct:args
74 if (a->scopes != NULL)
115 function of which A->scopes[A->nscopes - 1] is a concrete instance.
119 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]); local
120 if (scopes == NULL)
122 free (a->scopes);
127 a->scopes = scopes;
205 dwarf_getscopes(Dwarf_Die *cudie, Dwarf_Addr pc, Dwarf_Die **scopes) argument
[all...]
H A Ddwarf_getscopevar.c1 /* Find a named variable or parameter within given scopes.
77 Ignore the first SKIP_SHADOWS scopes that match the name.
87 dwarf_getscopevar (Dwarf_Die *scopes, int nscopes, argument
115 if (INTUSE(dwarf_haschildren) (&scopes[out]))
117 if (INTUSE(dwarf_child) (&scopes[out], result) != 0)
153 || getfiles (&scopes[out], &files) != 0)
/external/elfutils/tests/
H A Daddrscopes.c110 Dwarf_Die *scopes; local
111 int n = dwarf_getscopes (cudie, pc - cubias, &scopes);
122 Dwarf_Die *const die = &scopes[n];
H A Dfuncscopes.c129 Dwarf_Die *scopes; local
130 int n = dwarf_getscopes_die (funcdie, &scopes);
150 Dwarf_Die *const die = &scopes[n];
/external/elfutils/src/
H A Daddr2line.c233 Dwarf_Die *scopes; local
234 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes);
239 switch (dwarf_tag (&scopes[i]))
243 const char *name = dwarf_diename (&scopes[i]);
252 const char *name = dwarf_diename (&scopes[i]);
262 if (dwarf_formudata (dwarf_attr (&scopes[i],
269 if (dwarf_formudata (dwarf_attr (&scopes[i],
273 if (dwarf_formudata (dwarf_attr (&scopes[i],
/external/linux-tools-perf/util/
H A Dprobe-finder.c1142 Dwarf_Die vr_die, *scopes; local
1186 nscopes = dwarf_getscopes_die(sp_die, &scopes);
1189 dwarf_diename(&scopes[nscopes]));
1191 if (die_find_variable_at(&scopes[nscopes],
1198 if (scopes)
1199 free(scopes);
1702 Dwarf_Die die_mem, *scopes = NULL; local
1732 nscopes = dwarf_getscopes_die(sp_die, &scopes);
1734 die_find_child(&scopes[nscopes], collect_variables_cb,
1736 if (scopes)
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.metadata.repository_1.1.0.v20100513.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammar.java404 /** Track the scopes defined outside of rules and the scopes associated
407 protected Map scopes = new HashMap(); field in class:Grammar
1724 scopes.put(name,scope);
1748 return (AttributeScope)scopes.get(name);
1752 return scopes;
/external/v8/src/
H A Ddebug-debugger.js1426 } else if (request.command == 'scopes') {
1955 // Get the frame for which the scope or scopes are requested.
1970 // No frames no scopes.
1972 return response.failed('No scopes');
1975 // Get the frame for which the scopes are requested.
1978 // Fill all scopes for this frame.
1980 var scopes = [];
1982 scopes.push(frame.scope(i));
1988 scopes: scopes
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 260 milliseconds