OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UncaughtExceptionHandler
(Results
1 - 25
of
97
) sorted by null
1
2
3
4
/art/test/050-sync-test/src/
ThreadDeathHandler.java
17
import java.lang.Thread.
UncaughtExceptionHandler
;
22
public class ThreadDeathHandler implements Thread.
UncaughtExceptionHandler
{
/art/test/054-uncaught/src/
ThreadDeathHandler.java
17
import java.lang.Thread.
UncaughtExceptionHandler
;
22
public class ThreadDeathHandler implements Thread.
UncaughtExceptionHandler
{
/external/guava/guava/src/com/google/common/util/concurrent/
UncaughtExceptionHandlers.java
23
import java.lang.Thread.
UncaughtExceptionHandler
;
27
* Factories for {@link
UncaughtExceptionHandler
} instances.
49
public static
UncaughtExceptionHandler
systemExit() {
53
@VisibleForTesting static final class Exiter implements
UncaughtExceptionHandler
{
ThreadFactoryBuilder.java
22
import java.lang.Thread.
UncaughtExceptionHandler
;
49
private
UncaughtExceptionHandler
uncaughtExceptionHandler
= null;
107
* Sets the {@link
UncaughtExceptionHandler
} for new threads created with this
110
* @param
uncaughtExceptionHandler
the uncaught exception handler for new
115
UncaughtExceptionHandler
uncaughtExceptionHandler
) {
116
this.
uncaughtExceptionHandler
= checkNotNull(
uncaughtExceptionHandler
);
153
final
UncaughtExceptionHandler
uncaughtExceptionHandler
[
all
...]
/libcore/jsr166-tests/src/test/java/jsr166/
ThreadTest.java
25
static class MyHandler implements Thread.
UncaughtExceptionHandler
{
62
Thread.
UncaughtExceptionHandler
defaultHandler
/libcore/luni/src/test/java/libcore/java/lang/
ThreadTest.java
19
import java.lang.Thread.
UncaughtExceptionHandler
;
140
UncaughtExceptionHandler
initialHandler = Mockito.mock(
UncaughtExceptionHandler
.class);
141
UncaughtExceptionHandler
defaultHandler = Mockito.mock(
UncaughtExceptionHandler
.class);
144
UncaughtExceptionHandler
originalDefaultHandler
162
UncaughtExceptionHandler
initialHandler = Mockito.mock(
UncaughtExceptionHandler
.class);
163
UncaughtExceptionHandler
originalDefaultHandler
/external/okhttp/okhttp-testing-support/src/main/java/com/squareup/okhttp/testing/
InstallUncaughtExceptionHandlerListener.java
27
* {@link java.lang.Thread.
UncaughtExceptionHandler
} similar to the one found on Android.
33
private Thread.
UncaughtExceptionHandler
oldDefaultUncaughtExceptionHandler;
39
Thread.setDefaultUncaughtExceptionHandler(new Thread.
UncaughtExceptionHandler
() {
/cts/common/device-side/util/src/com/android/compatibility/common/util/
NullWebViewUtils.java
75
implements Thread.
UncaughtExceptionHandler
{
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/plugins/
PluginManagerTest.java
50
import java.lang.Thread.
UncaughtExceptionHandler
;
62
private
UncaughtExceptionHandler
mRealExceptionHandler;
63
private
UncaughtExceptionHandler
mMockExceptionHandler;
64
private
UncaughtExceptionHandler
mPluginExceptionHandler;
71
mMockExceptionHandler = mock(
UncaughtExceptionHandler
.class);
/external/autotest/frontend/client/src/autotest/common/
PaddedJsonRpcProxy.java
5
import com.google.gwt.core.client.GWT.
UncaughtExceptionHandler
;
89
UncaughtExceptionHandler
handler = GWT.getUncaughtExceptionHandler();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ExecutorUtils.java
23
import java.lang.Thread.
UncaughtExceptionHandler
;
56
thread.setUncaughtExceptionHandler(new
UncaughtExceptionHandler
() {
/libcore/ojluni/src/main/java/java/lang/
Thread.java
784
uncaughtExceptionHandler
= null;
[
all
...]
/external/autotest/frontend/client/src/autotest/tko/
EmbeddedTkoClient.java
12
import com.google.gwt.core.client.GWT.
UncaughtExceptionHandler
;
/external/droiddriver/src/io/appium/droiddriver/helpers/
BaseDroidDriverTest.java
26
import java.lang.Thread.
UncaughtExceptionHandler
;
51
Thread.setDefaultUncaughtExceptionHandler(new
UncaughtExceptionHandler
() {
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
UnhandledExceptionHandler.java
33
implements Thread.
UncaughtExceptionHandler
{
/external/guava/guava-tests/test/com/google/common/util/concurrent/
ThreadFactoryBuilderTest.java
25
import java.lang.Thread.
UncaughtExceptionHandler
;
42
private static final
UncaughtExceptionHandler
UNCAUGHT_EXCEPTION_HANDLER =
43
new
UncaughtExceptionHandler
() {
AbstractExecutionThreadServiceTest.java
24
import java.lang.Thread.
UncaughtExceptionHandler
;
49
executionThread.setUncaughtExceptionHandler(new
UncaughtExceptionHandler
() {
/packages/apps/Messaging/src/com/android/messaging/
BugleApplication.java
50
import java.lang.Thread.
UncaughtExceptionHandler
;
55
public class BugleApplication extends Application implements
UncaughtExceptionHandler
{
58
private
UncaughtExceptionHandler
sSystemUncaughtExceptionHandler;
/frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
PluginManagerImpl.java
53
import java.lang.Thread.
UncaughtExceptionHandler
;
86
UncaughtExceptionHandler
defaultHandler) {
93
PluginExceptionHandler
uncaughtExceptionHandler
= new PluginExceptionHandler(
95
Thread.setUncaughtExceptionPreHandler(
uncaughtExceptionHandler
);
335
private class PluginExceptionHandler implements
UncaughtExceptionHandler
{
336
private final
UncaughtExceptionHandler
mHandler;
338
private PluginExceptionHandler(
UncaughtExceptionHandler
handler) {
/external/mockito/src/test/java/org/mockito/internal/stubbing/
InvocationContainerImplTest.java
61
t[i].setUncaughtExceptionHandler(new Thread.
UncaughtExceptionHandler
() {
/libcore/ojluni/src/main/java/java/util/concurrent/
ForkJoinWorkerThread.java
237
public void setUncaughtExceptionHandler(
UncaughtExceptionHandler
x) { }
/frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDelegateImplBase.java
52
final Thread.
UncaughtExceptionHandler
defHandler
55
Thread.setDefaultUncaughtExceptionHandler(new Thread.
UncaughtExceptionHandler
() {
/prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp-testing-support/2.7.4/
okhttp-testing-support-2.7.4.jar
/frameworks/base/core/java/com/android/internal/os/
RuntimeInit.java
69
private static class LoggingHandler implements Thread.
UncaughtExceptionHandler
{
76
// apps can set a custom
UncaughtExceptionHandler
that renders uncaught
82
// apps can set a custom
UncaughtExceptionHandler
that renders uncaught
101
private static class KillApplicationHandler implements Thread.
UncaughtExceptionHandler
{
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TimerTest.java
20
import java.lang.Thread.
UncaughtExceptionHandler
;
[
all
...]
Completed in 1057 milliseconds
1
2
3
4