HomeSort by relevance Sort by last modified time
    Searched defs:stackState (Results 1 - 2 of 2) sorted by null

  /dalvik/vm/native/
java_lang_Throwable.cpp 30 Object* stackState = NULL;
34 stackState = dvmFillInStackTrace(dvmThreadSelf());
35 RETURN_PTR(stackState);
39 * private static StackTraceElement[] nativeGetStackTrace(Object stackState)
41 * The "stackState" argument must be the value returned by an earlier call to
47 Object* stackState = (Object*) args[0];
50 if (stackState == NULL) {
55 elements = dvmGetStackTrace(stackState);
  /libcore/luni/src/main/java/java/lang/
Throwable.java 73 private transient volatile Object stackState;
166 stackState = nativeFillInStackTrace();
264 stackTrace = nativeGetStackTrace(stackState);
265 stackState = null; // Let go of intermediate representation.
450 * storing in the "stackState" field, based on the current thread's
457 * in "stackState".
459 private static native StackTraceElement[] nativeGetStackTrace(Object stackState);

Completed in 192 milliseconds