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

/dalvik/libcore/security-kernel/src/main/java/java/security/
H A DAccessControlContext.java126 * ProtectionDomains passed as <code>stack</code> is then passed into
134 * @param stack - array of ProtectionDomains
137 AccessControlContext(ProtectionDomain[] stack, argument
139 this(stack); // removes dups, removes nulls, checks for stack==null
145 * ProtectionDomains passed as <code>stack</code> is then passed into
153 * @param stack - array of ProtectionDomains
156 AccessControlContext(ProtectionDomain[] stack, argument
158 this(stack); // removes dups, removes nulls, checks for stack
[all...]
/dalvik/vm/alloc/
H A DMarkSweep.h22 /* Downward-growing stack for better cache read behavior.
29 /* Current top of the stack (inclusive)
43 GcMarkStack stack; member in struct:__anon59
H A DMarkSweep.c85 createMarkStack(GcMarkStack *stack) argument
91 /* Create a stack big enough for the worst possible case,
93 * TODO: be better about memory usage; use a smaller stack with
101 LOGE_GC("Could not create %d-byte ashmem mark stack: %s\n",
110 LOGE_GC("Could not mmap %d-byte ashmem mark stack: %s\n",
115 memset(stack, 0, sizeof(*stack));
116 stack->limit = limit;
117 stack->base = (const Object **)((uintptr_t)limit + size);
118 stack
124 destroyMarkStack(GcMarkStack *stack) argument
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DExecutionStack.java26 * Representation of a Java method execution stack.
33 /** {@code non-null;} array of stack contents */
34 private final TypeBearer[] stack; field in class:ExecutionStack
37 * {@code >= 0;} stack pointer (points one past the end) / current stack
45 * @param maxStack {@code >= 0;} the maximum size of the stack for this
50 stack = new TypeBearer[maxStack];
60 ExecutionStack result = new ExecutionStack(stack.length);
62 System.arraycopy(stack, 0, result.stack,
[all...]
H A DFrame.java27 * of a set of locals and a value stack, and it can be told to act on
35 /** {@code non-null;} the stack */
36 private final ExecutionStack stack; field in class:Frame
38 /** {@code null-ok;} stack of labels of subroutines that this block is nested in */
45 * @param stack {@code non-null;} the execution stack to use
47 private Frame(LocalsArray locals, ExecutionStack stack) { argument
48 this(locals, stack, IntList.EMPTY);
55 * @param stack {@code non-null;} the execution stack t
59 Frame(LocalsArray locals, ExecutionStack stack, IntList subroutines) argument
[all...]
/dalvik/hit/src/com/android/hit/
H A DArrayInstance.java28 public ArrayInstance(long id, StackTrace stack, int type, int numEntries, argument
31 mStack = stack;
H A DClassInstance.java27 public ClassInstance(long id, StackTrace stack, long classId) { argument
29 mStack = stack;
H A DRootObj.java41 public RootObj(RootType type, long id, int thread, StackTrace stack) { argument
45 mStack = stack;
H A DClassObj.java41 public ClassObj(long id, StackTrace stack, String className) { argument
43 mStack = stack;
/dalvik/libcore/json/src/main/java/org/json/
H A DJSONStringer.java111 * Unlike the original implementation, this stack isn't limited to 20
114 private final List<Scope> stack = new ArrayList<Scope>(); field in class:JSONStringer
175 if (stack.isEmpty() && out.length() > 0) {
179 stack.add(empty);
194 stack.remove(stack.size() - 1);
203 * Returns the value on the top of the stack.
206 if (stack.isEmpty()) {
209 return stack.get(stack
[all...]
/dalvik/dx/src/junit/runner/
H A DBaseTestRunner.java262 * Returns a filtered stack trace
274 * Filters stack frames from internal JUnit classes
276 public static String getFilteredTrace(String stack) { argument
278 return stack;
282 StringReader sr= new StringReader(stack);
292 return stack; // return the stack unfiltered
/dalvik/libcore/luni/src/test/java/junit/runner/
H A DBaseTestRunner.java262 * Returns a filtered stack trace
274 * Filters stack frames from internal JUnit classes
276 public static String getFilteredTrace(String stack) { argument
278 return stack;
282 StringReader sr= new StringReader(stack);
295 return stack; // return the stack unfiltered
/dalvik/tools/dmtracedump/
H A DCreateTestTrace.c79 typedef struct stack { struct
82 } stack; typedef in typeref:struct:stack
105 * determines the call stack. Each called method must be indented by one
126 stack *callStack;
163 callStack = (stack *) malloc(sizeof(stack) * numThreads);
198 // Allocate space for the thread stack, if necessary
263 // Exiting method must be currently on top of stack (unless stack is empty)
266 printf(" Exiting %s (past bottom of stack)\
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java62 * a ContentHandler stack, and pushing appropriate content
219 * Utility function to see if the stack contains the given URL.
221 * @param stack non-null reference to a Stack.
224 * @return true if the stack contains the url argument.
226 private boolean stackContains(Stack stack, String url) argument
229 int n = stack.size();
234 String url2 = (String) stack.elementAt(i);
401 * stylesheet being parsed. The stack needs to be popped
1040 * (warning: I worry that this should be in a stack).
1048 * (warning: I worry that this should be in a stack)
[all...]
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...
/dalvik/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 2128 milliseconds