Searched defs:th (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/native/
H A DObjectStreamClass.c63 jthrowable th = (*env)->ExceptionOccurred(env); local
65 if (!(*env)->IsInstanceOf(env, th, noSuchMethodErrCl)) {
66 (*env)->Throw(env, th);
92 jthrowable th = (*env)->ExceptionOccurred(env); local
94 if (!(*env)->IsInstanceOf(env, th, noSuchMethodErrCl)) {
95 (*env)->Throw(env, th);
/libcore/ojluni/src/main/java/java/lang/
H A DSystem.java1592 public static void logE(String message, Throwable th) { argument
1593 log('E', message, th);
1606 public static void logI(String message, Throwable th) { argument
1607 log('I', message, th);
1620 public static void logW(String message, Throwable th) { argument
1621 log('W', message, th);
1624 private static native void log(char type, String message, Throwable th); argument
/libcore/ojluni/src/main/java/java/io/
H A DObjectStreamClass.java355 } catch (Throwable th) {
356 entry = th;
979 Throwable th = ex.getTargetException();
980 if (th instanceof IOException) {
981 throw (IOException) th;
983 throwMiscException(th);
1008 Throwable th = ex.getTargetException();
1009 if (th instanceof ClassNotFoundException) {
1010 throw (ClassNotFoundException) th;
1011 } else if (th instanceo
1523 throwMiscException(Throwable th) argument
[all...]

Completed in 156 milliseconds