HomeSort by relevance Sort by last modified time
    Searched defs:STACK (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /tools/loganalysis/src/com/android/loganalysis/item/
TracesItem.java 27 * For now, this only stores info about the main stack trace from the first process. It is used to
28 * get a stack from {@code /data/anr/traces.txt} which can be used to give some context about the
39 public static final String STACK = "STACK";
42 PID, APP, STACK));
80 * Get the stack for the crash.
83 return (String) getAttribute(STACK);
87 * Set the stack for the crash.
89 public void setStack(String stack) {
90 setAttribute(STACK, stack)
    [all...]
MiscKernelLogItem.java 35 public static final String STACK = "STACK";
38 EVENT_TIME, PREAMBLE, CATEGORY, STACK));
99 * Get the stack for the event.
102 return (String) getAttribute(STACK);
106 * Set the stack for the event.
108 public void setStack(String stack) {
109 setAttribute(STACK, stack);
MiscLogcatItem.java 44 public static final String STACK = "STACK";
47 EVENT_TIME, PID, TID, APP, TAG, LAST_PREAMBLE, PROCESS_PREAMBLE, CATEGORY, STACK));
187 * Get the stack for the event.
190 return (String) getAttribute(STACK);
194 * Set the stack for the event.
196 public void setStack(String stack) {
197 setAttribute(STACK, stack);
  /tools/loganalysis/src/com/android/loganalysis/parser/
TracesParser.java 27 * For now, this only extracts the main stack trace from the first process. It is used to get a
28 * stack from {@code /data/anr/traces.txt} which can be used to give some context about the ANR. If
47 private static final Pattern STACK = Pattern.compile("^\"main\" .*$");
57 StringBuffer stack = null; local
60 if (stack == null) {
69 m = STACK.matcher(line);
71 stack = new StringBuffer();
72 stack.append(line);
73 stack.append("\n");
76 stack.append(line)
    [all...]
  /system/core/debuggerd/libdebuggerd/include/
utility.h 73 STACK,
  /packages/apps/DocumentsUI/src/com/android/documentsui/picker/
LastAccessedProvider.java 71 public static final String STACK = "stack";
104 Columns.STACK + " BLOB DEFAULT NULL," +
124 ContentResolver resolver, String packageName, DocumentStack stack) {
126 final byte[] rawStack = DurableUtils.writeToArrayOrNull(stack);
128 values.put(Columns.STACK, rawStack);
242 final DocumentStack stack = new DocumentStack(); local
249 cursor.getColumnIndex(Columns.STACK));
250 DurableUtils.readFromArray(rawStack, stack);
252 if (stack.getRoot() != null && predicate.test(stack.getRoot().authority))
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/doc/
chew.c 38 Two stacks are provided, a string stack and an integer stack.
46 ! - pop top of integer stack for address, pop next for value; store
47 @ - treat value on integer stack as the address of an integer; push
48 that integer on the integer stack after popping the "address"
74 internalmode - pop from integer stack, set `internalmode' to that value
75 print_stack_level - print current stack depth to stderr
77 [quoted string] - push string onto string stack
78 [word starting with digit] - push atol(str) onto integer stack
92 #define STACK 5
283 string_type stack[STACK]; variable
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
CompletableFuture.java 121 * collected in a linked stack. It atomically completes by CASing
139 * as Treiber stacks headed by field "stack". There are Completion
181 * x's stack (unless done), and started or triggered via
204 * Treiber stack wait-nodes used in FutureTask, Phaser, and
221 volatile Completion stack; // Top of Treiber stack of dependent actions field in class:CompletableFuture
228 return U.compareAndSwapObject(this, STACK, cmp, val);
231 /** Returns true if successfully pushed c onto stack. */
233 Completion h = stack;
235 return U.compareAndSwapObject(this, STACK, h, c)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
infinite_recursion.py 294 STACK = stack_st
296 ('sk', POINTER(STACK)),
631 ('attributes', POINTER(STACK)),
909 ('x509_chain', POINTER(STACK)),
940 ('auth_attr', POINTER(STACK)),
943 ('unauth_attr', POINTER(STACK)),
967 ('md_algs', POINTER(STACK)),
968 ('cert', POINTER(STACK)),
969 ('crl', POINTER(STACK)),
970 ('signer_info', POINTER(STACK)),
    [all...]
  /external/pcre/dist2/src/
pcre2_jit_compile.c 93 /* Allocate memory for the regex stack on the real machine stack.
97 /* Growth rate for stack allocated by the OS. Should be the multiply
140 '(' matching path (pushing arguments to the stack)
142 ')' matching path (pushing arguments to the stack)
155 code paths. In this way the topmost value on the stack is always belong
158 the matching path eventually. Otherwise it needs to clear out its own stack
163 Saved stack frames:
170 The stack frames are stored in a chain list, and have the following format:
173 Thus we can restore the private data to a particular point in the stack
178 struct sljit_stack *stack; member in struct:jit_arguments
8387 int stack; \/* Also contains the offset of control head. *\/ local
    [all...]
  /external/valgrind/drd/tests/
tsan_unittest.cpp 6352 int stack; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 294 STACK = stack_st
296 ('sk', POINTER(STACK)),
631 ('attributes', POINTER(STACK)),
909 ('x509_chain', POINTER(STACK)),
940 ('auth_attr', POINTER(STACK)),
943 ('unauth_attr', POINTER(STACK)),
967 ('md_algs', POINTER(STACK)),
968 ('cert', POINTER(STACK)),
969 ('crl', POINTER(STACK)),
970 ('signer_info', POINTER(STACK)),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 294 STACK = stack_st
296 ('sk', POINTER(STACK)),
631 ('attributes', POINTER(STACK)),
909 ('x509_chain', POINTER(STACK)),
940 ('auth_attr', POINTER(STACK)),
943 ('unauth_attr', POINTER(STACK)),
967 ('md_algs', POINTER(STACK)),
968 ('cert', POINTER(STACK)),
969 ('crl', POINTER(STACK)),
970 ('signer_info', POINTER(STACK)),
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /external/v8/src/
objects.h     [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilts/tools/common/jasmin/
jasmin.jar 
  /prebuilts/tools/common/m2/repository/org/apache/logging/log4j/log4j-api/2.5/
log4j-api-2.5.jar 
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
org.eclipse.sisu.inject-0.0.0.M5.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/
ddmlib-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.0/
ddmlib-22.4.0.jar 

Completed in 1018 milliseconds

1 2 3 4 5 6 7