Home
last modified time | relevance | path

Searched refs:cause (Results 1 – 18 of 18) sorted by relevance

/dalvik/dx/src/com/android/dx/util/
DMutabilityException.java28 public MutabilityException(Throwable cause) { in MutabilityException() argument
29 super(cause); in MutabilityException()
32 public MutabilityException(String message, Throwable cause) { in MutabilityException() argument
33 super(message, cause); in MutabilityException()
DExceptionWithContext.java67 public ExceptionWithContext(Throwable cause) { in ExceptionWithContext() argument
68 this(null, cause); in ExceptionWithContext()
77 public ExceptionWithContext(String message, Throwable cause) { in ExceptionWithContext() argument
79 (cause != null) ? cause.getMessage() : null, in ExceptionWithContext()
80 cause); in ExceptionWithContext()
82 if (cause instanceof ExceptionWithContext) { in ExceptionWithContext()
83 String ctx = ((ExceptionWithContext) cause).context.toString(); in ExceptionWithContext()
/dalvik/dx/src/com/android/dx/cf/iface/
DParseException.java30 public ParseException(Throwable cause) { in ParseException() argument
31 super(cause); in ParseException()
34 public ParseException(String message, Throwable cause) { in ParseException() argument
35 super(message, cause); in ParseException()
/dalvik/dx/src/com/android/dx/cf/code/
DSimException.java30 public SimException(Throwable cause) { in SimException() argument
31 super(cause); in SimException()
34 public SimException(String message, Throwable cause) { in SimException() argument
35 super(message, cause); in SimException()
/dalvik/vm/
DException.c99 static bool initException(Object* exception, const char* msg, Object* cause,
218 Object* cause) in dvmThrowChainedException() argument
224 (cause != NULL) ? cause->clazz->descriptor : "(none)"); in dvmThrowChainedException()
256 dvmThrowChainedExceptionByClass(excepClass, msg, cause); in dvmThrowChainedException()
263 Object* cause) in dvmThrowChainedExceptionByClass() argument
275 "failed to init original exception class", cause); in dvmThrowChainedExceptionByClass()
305 if (!initException(exception, msg, cause, self)) { in dvmThrowChainedExceptionByClass()
333 const char* messageDescriptor, Object* cause) in dvmThrowChainedExceptionWithClassMessage() argument
337 dvmThrowChainedException(exceptionDescriptor, message, cause); in dvmThrowChainedExceptionWithClassMessage()
404 static bool initException(Object* exception, const char* msg, Object* cause, in initException() argument
[all …]
DException.h31 Object* cause);
61 const char* msg, Object* cause);
73 const char* messageDescriptor, Object* cause);
/dalvik/tests/087-gc-after-link/src/
DMain.java29 public TestFailed(Throwable cause) { in TestFailed() argument
30 super(cause); in TestFailed()
156 Throwable cause = ite.getCause(); in testFailLoadAndGc()
157 if (cause instanceof NullPointerException) { in testFailLoadAndGc()
/dalvik/tests/086-null-super/src/
DMain.java29 public TestFailed(Throwable cause) { in TestFailed() argument
30 super(cause); in TestFailed()
156 Throwable cause = ite.getCause(); in testFailLoadAndGc()
157 if (cause instanceof NullPointerException) { in testFailLoadAndGc()
/dalvik/tests/063-process-manager/
Dinfo.txt2 doesn't cause the system to busy-wait.
/dalvik/tests/081-hot-exceptions/
Dinfo.txt3 cause a control flow change to deviate from the current method.
/dalvik/tests/068-classloader/src/
DMain.java104 Throwable cause = cnfe.getCause(); in testAccess2()
105 if (cause instanceof IllegalAccessError) { in testAccess2()
124 Throwable cause = cnfe.getCause(); in testAccess3()
125 if (cause instanceof IllegalAccessError) { in testAccess3()
/dalvik/dx/tests/110-dex-preserve-this/
Dinfo.txt6 fact cause that to happen.)
/dalvik/vm/mterp/
DNOTES.txt20 (A debugger can in theory cause the interpreter to advance one instruction
53 * Don't do anything that can cause a GC in the invoke-* handler after
/dalvik/vm/mterp/x86-atom/
DOP_CHECK_CAST.S82 … # const char* messageDescriptor, Object* cause)
/dalvik/vm/analysis/
DOptimize.c425 Object* cause = dvmGetExceptionCause(excep); in dvmOptResolveClass() local
426 if (cause == NULL) in dvmOptResolveClass()
428 excep = cause; in dvmOptResolveClass()
/dalvik/libnativehelper/
DNOTICE31 "control" means (i) the power, direct or indirect, to cause the
110 (b) You must cause any modified files to carry prominent notices
/dalvik/
DNOTICE31 "control" means (i) the power, direct or indirect, to cause the
110 (b) You must cause any modified files to carry prominent notices
/dalvik/vm/mterp/out/
DInterpAsm-x86-atom.S15547 … # const char* messageDescriptor, Object* cause)