Home
last modified time | relevance | path

Searched full:uncaught (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/external/cronet/stable/base/android/java/src/org/chromium/base/
DJniAndroid.java20 * <p>Since this is running inside an uncaught exception handler, this method will make every
43 * Indicates that native code was faced with an uncaught Java exception.
45 * <p>{@code #getCause} returns the original uncaught exception.
56 * Called by the Chromium native JNI framework when faced with an uncaught Java exception while
62 * Java side so that the crash looks like any other uncaught Java exception, and is handled
71 * @param throwable The uncaught Java exception that was thrown by a Java method called via JNI.
74 * @return null, unless the uncaught exception handler threw an exception other than
82 Log.e(TAG, "Handling uncaught Java exception", throwable); in handleException()
96 // To that end, we try to call the global uncaught exception handler. Hopefully that in handleException()
97 // will eventually reach the default Android uncaught exception handler (possibly going in handleException()
[all …]
/external/cronet/tot/base/android/java/src/org/chromium/base/
DJniAndroid.java20 * <p>Since this is running inside an uncaught exception handler, this method will make every
43 * Indicates that native code was faced with an uncaught Java exception.
45 * <p>{@code #getCause} returns the original uncaught exception.
56 * Called by the Chromium native JNI framework when faced with an uncaught Java exception while
62 * Java side so that the crash looks like any other uncaught Java exception, and is handled
71 * @param throwable The uncaught Java exception that was thrown by a Java method called via JNI.
74 * @return null, unless the uncaught exception handler threw an exception other than
82 Log.e(TAG, "Handling uncaught Java exception", throwable); in handleException()
96 // To that end, we try to call the global uncaught exception handler. Hopefully that in handleException()
97 // will eventually reach the default Android uncaught exception handler (possibly going in handleException()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DCombinedExceptionEventsTest.java49 * Tests combined EXCEPTION events for uncaught exception. It runs the
51 * EXCEPTION events for uncaught exception.
63 * <li>only uncaught DebuggeeException (and subclasses)</li>
64 * <li>only uncaught SubDebuggeeException (and subclasses)</li>
65 * <li>caught and uncaught DebuggeeException (and subclasses)</li>
66 * <li>caught and uncaught SubDebuggeeException (and subclasses)</li>
72 * true to test uncaught exception, false to test caught exception.
92 // Request "uncaught only" exceptions with super and sub classes. in runCombinedExceptionEventsTest()
96 // Request "caught & uncaught" exceptions with super and sub classes. in runCombinedExceptionEventsTest()
174 boolean uncaught) { in requestException() argument
[all …]
DExceptionUncaughtTest.java29 * JDWP Unit test for uncaught EXCEPTION event.
42 * This testcase is for uncaught EXCEPTION event and reported exception object.
43 * <BR>It runs ExceptionUncaughtDebuggee that throws an uncaught DebuggeeException.
79 * This testcase is for uncaught EXCEPTION event and reported throw location.
80 * <BR>It runs ExceptionUncaughtDebuggee that throws an uncaught DebuggeeException.
134 * This testcase is for uncaught EXCEPTION event and reported catch location.
135 * <BR>It runs ExceptionUncaughtDebuggee that throws an uncaught DebuggeeException.
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DCoroutineExceptionHandler.kt7 …* Helper function for coroutine builder implementations to handle uncaught and unexpected exceptio…
53 * An optional element in the coroutine context to handle **uncaught** exceptions.
55 …* Normally, uncaught exceptions can only result from _root_ coroutines created using the [launch][…
61 * in the resulting [Deferred] object, so it cannot result in uncaught exceptions.
84 * ### Uncaught exceptions with no handler
104 * Handles uncaught [exception] in the given [context]. It is invoked
105 * if coroutine has an uncaught exception.
/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/src/
DAndroidExceptionPreHandler.kt31 …* Android Oreo introduced private API for a global pre-handler for uncaught exceptions, to ensure … in handleException()
32 …* exceptions are logged even if the default uncaught exception handler is replaced by the app. The… in handleException()
34 …* Thread's uncaught exception handler bypasses the pre-handler in Android Oreo, and uncaught corou… in handleException()
36 * uncaught exception handler to invoke the pre-handler if it was not invoked already (see in handleException()
/external/cronet/tot/base/android/
Djni_android.cc33 // uncaught Java exception (historical behavior). If enabled, we give the Java
34 // uncaught exception handler a chance to handle the exception first, so that
84 "While handling an uncaught Java exception, an OutOfMemoryError "
87 "While handling an uncaught Java exception, another exception "
90 "Uncaught Java exception in native code. Please include the Java exception "
93 "Uncaught Java exception in native code and the Java uncaught exception "
123 // We were handling an uncaught Java exception already, but one of the Java in CheckException()
160 LOG(ERROR) << "Crashing due to uncaught Java exception"; in CheckException()
201 // the global uncaught exception handler. in CheckException()
/external/cronet/stable/base/android/
Djni_android.cc33 // uncaught Java exception (historical behavior). If enabled, we give the Java
34 // uncaught exception handler a chance to handle the exception first, so that
84 "While handling an uncaught Java exception, an OutOfMemoryError "
87 "While handling an uncaught Java exception, another exception "
90 "Uncaught Java exception in native code. Please include the Java exception "
93 "Uncaught Java exception in native code and the Java uncaught exception "
123 // We were handling an uncaught Java exception already, but one of the Java in CheckException()
160 LOG(ERROR) << "Crashing due to uncaught Java exception"; in CheckException()
201 // the global uncaught exception handler. in CheckException()
/external/kotlinx.coroutines/kotlinx-coroutines-test/jvm/test/
DUncaughtExceptionsTest.kt9 * Tests that check the behavior of the test framework when there are stray uncaught exceptions. in <lambda>()
10 …* These tests are JVM-only because only the JVM allows to set a global uncaught exception handler … in <lambda>()
34 …assertEquals(1, uncaughtExceptions.size, "Expected 1 uncaught exception, but got $uncaughtExceptio… in <lambda>()
42 …assertEquals(2, uncaughtExceptions.size, "Expected 2 uncaught exceptions, but got $uncaughtExcepti… in <lambda>()
/external/downloader/src/test/java/com/google/android/downloader/
DTestExecutorRule.java35 * down any started threads and executors during execution, and also collects uncaught exceptions,
36 * failing the test and reporting the uncaught exception if any are found during execution.
45 // Insert an uncaught exception handler so that that errors happening on a background
62 * collect any uncaught exceptions encountered during test execution, and will fail the test with
75 * will collect any uncaught exceptions encountered during test execution, and will fail the test
107 fail("Uncaught exceptions found: " + message); in after()
/external/libcxx/test/std/language.support/support.exception/uncaught/
Duncaught_exceptions.pass.cpp26 struct Uncaught { struct
27 Uncaught(int depth) : d_(depth) {} in Uncaught() function
28 ~Uncaught() { assert(std::uncaught_exceptions() == d_); } in ~Uncaught() argument
37 Uncaught u(d_+1); in ~Outer() argument
/external/cronet/tot/third_party/libc++/src/test/std/language.support/support.exception/uncaught/
Duncaught_exceptions.pass.cpp23 struct Uncaught { struct
24 Uncaught(int depth) : d_(depth) {} in Uncaught() argument
25 ~Uncaught() { assert(std::uncaught_exceptions() == d_); } in ~Uncaught() argument
34 Uncaught u(d_+1); in ~Outer() argument
/external/cronet/stable/third_party/libc++/src/test/std/language.support/support.exception/uncaught/
Duncaught_exceptions.pass.cpp23 struct Uncaught { struct
24 Uncaught(int depth) : d_(depth) {} in Uncaught() argument
25 ~Uncaught() { assert(std::uncaught_exceptions() == d_); } in ~Uncaught() argument
34 Uncaught u(d_+1); in ~Outer() argument
/external/connectedappssdk/annotations/src/main/java/com/google/android/enterprise/connectedapps/annotations/
DUncaughtExceptionsPolicy.java3 /** Determines what to do when a cross-profile method has an uncaught exception. */
5 /** Notify the caller about the uncaught exception, then rethrow it. */
7 /** Notify the caller about the uncaught exception, then suppress it. */
/external/cronet/tot/build/android/pylib/utils/
Ddecorators.py22 """Returns decorator that catches and logs uncaught Exceptions.
25 default_return_value: Value to return in the case of uncaught Exception.
26 exception_message: Message for uncaught exceptions.
/external/angle/build/android/pylib/utils/
Ddecorators.py22 """Returns decorator that catches and logs uncaught Exceptions.
25 default_return_value: Value to return in the case of uncaught Exception.
26 exception_message: Message for uncaught exceptions.
/external/cronet/stable/build/android/pylib/utils/
Ddecorators.py22 """Returns decorator that catches and logs uncaught Exceptions.
25 default_return_value: Value to return in the case of uncaught Exception.
26 exception_message: Message for uncaught exceptions.
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DEventBuilder.java120 * @param uncaught true to report uncaught exception, false otherwise
124 boolean uncaught) { in setExceptionOnly() argument
127 mod.uncaught = uncaught; in setExceptionOnly()
/external/libcxxabi/src/
Dcxa_default_handlers.cpp24 static const char* cause = "uncaught";
29 // If there might be an uncaught exception in demangling_terminate_handler()
35 // If there is an uncaught exception in demangling_terminate_handler()
59 // If the uncaught exception can be caught with std::exception& in demangling_terminate_handler()
/external/skia/infra/bots/recipe_modules/build/examples/full.expected/
Dunknown-docker-image.json4 "name": "RECIPE CRASH (Uncaught exception)",
7 "The recipe has crashed at point 'Uncaught exception'!",
33 …"humanReason": "Uncaught Exception: Exception('Not implemented: Build-Unix-GCC-x86_64-Release-Dock…
/external/okhttp/okhttp-testing-support/src/main/java/com/squareup/okhttp/testing/
DInstallUncaughtExceptionHandlerListener.java37 System.err.println("Installing aggressive uncaught exception handler"); in testRunStarted()
42 errorText.append("Uncaught exception in OkHttp thread \""); in testRunStarted()
64 System.err.println("Uninstalled aggressive uncaught exception handler"); in testRunFinished()
/external/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.expected/
Dunrecognized_builder.json24 "name": "RECIPE CRASH (Uncaught exception)",
27 "The recipe has crashed at point 'Uncaught exception'!",
49 …"humanReason": "Uncaught Exception: Exception('Could not recognize the buildername Perf-Debian10-n…
/external/cronet/tot/base/android/javatests/src/org/chromium/base/task/
DPostTaskTest.java89 AtomicReference<Throwable> uncaught = new AtomicReference<>(); in testAsyncException() local
97 uncaught.set(throwable); in testAsyncException()
104 Throwable ex = uncaught.get(); in testAsyncException()
/external/cronet/stable/base/android/javatests/src/org/chromium/base/task/
DPostTaskTest.java89 AtomicReference<Throwable> uncaught = new AtomicReference<>(); in testAsyncException() local
97 uncaught.set(throwable); in testAsyncException()
104 Throwable ex = uncaught.get(); in testAsyncException()
/external/oj-libjdwp/src/share/classes/com/sun/jdi/event/
DExceptionEvent.java73 * Thus, it is possible that exceptions considered uncaught
88 * will be considered caught even though it appears to be uncaught from
92 * the exception is uncaught.

12345678910>>...12