HomeSort by relevance Sort by last modified time
    Searched refs:EXCEPTION (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /tools/tradefederation/core/src/com/android/tradefed/util/
CommandStatus.java 28 /** command threw exception and terminated abnormally */
29 EXCEPTION
  /tools/loganalysis/src/com/android/loganalysis/item/
JavaCrashItem.java 30 public static final String EXCEPTION = "EXCEPTION";
35 EXCEPTION, MESSAGE));
46 * Get the exception for the Java crash.
49 return (String) getAttribute(EXCEPTION);
53 * Get the exception for the Java crash.
55 public void setException(String exception) {
56 setAttribute(EXCEPTION, exception);
  /external/google-breakpad/src/testing/scripts/generator/cpp/
keywords.py 46 EXCEPTION = set('try catch throw'.split())
49 ALL = TYPES | TYPE_MODIFIERS | ACCESS | CASTS | OTHERS | OTHER_TYPES | CONTROL | EXCEPTION | LOOP
  /external/googletest/googlemock/scripts/generator/cpp/
keywords.py 46 EXCEPTION = set('try catch throw'.split())
49 ALL = TYPES | TYPE_MODIFIERS | ACCESS | CASTS | OTHERS | OTHER_TYPES | CONTROL | EXCEPTION | LOOP
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTransformTest.java 49 throw new UndeclaredThrowableException(EXCEPTION);
54 public void testFutureGetThrowsFunctionException() throws Exception {
56 listener.assertException(EXCEPTION);
AbstractChainedListenableFutureTest.java 36 protected static final Exception EXCEPTION = new Exception("Test exception");
43 protected void setUp() throws Exception {
52 public void testFutureGetBeforeCallback() throws Exception {
53 // Verify that get throws a timeout exception before the callback is called.
60 public void testFutureGetThrowsWrappedException() throws Exception {
61 inputFuture.setException(EXCEPTION);
62 listener.assertException(EXCEPTION);
    [all...]
AbstractServiceTest.java 51 public void testNoOpServiceStartStop() throws Exception {
77 public void testNoOpServiceStartAndWaitStopAndWait() throws Exception {
87 public void testNoOpServiceStartAsyncAndAwaitStopAsyncAndAwait() throws Exception {
97 public void testNoOpServiceStopIdempotence() throws Exception {
115 public void testNoOpServiceStopIdempotenceAfterWait() throws Exception {
125 public void testNoOpServiceStopIdempotenceDoubleWait() throws Exception {
137 throws Exception {
170 public void testManualServiceStartStop() throws Exception {
201 public void testManualServiceNotifyStoppedWhileRunning() throws Exception {
220 public void testManualServiceStopWhileStarting() throws Exception {
364 final AtomicReference<Throwable> exception = Atomics.newReference(); local
775 final RuntimeException exception = new RuntimeException("deliberate"); field in class:AbstractServiceTest.StartThrowingService
788 final RuntimeException exception = new RuntimeException("deliberate"); field in class:AbstractServiceTest.RunThrowingService
802 final RuntimeException exception = new RuntimeException("deliberate"); field in class:AbstractServiceTest.StopThrowingService
    [all...]
FuturesTransformAsyncFunctionTest.java 67 default: throw new UndeclaredThrowableException(EXCEPTION);
73 public void testFutureGetThrowsFunctionException() throws Exception {
75 listener.assertException(EXCEPTION);
79 throws Exception {
89 throws Exception {
99 public void testFutureCancelBeforeInputCompletion() throws Exception {
111 public void testFutureCancellableBeforeOutputCompletion() throws Exception {
124 public void testFutureCancellableBeforeFunctionCompletion() throws Exception {
153 public void testFutureCancelAfterCompletion() throws Exception {
162 public void testFutureGetThrowsRuntimeException() throws Exception {
    [all...]
  /external/v8/testing/gmock/scripts/generator/cpp/
keywords.py 46 EXCEPTION = set('try catch throw'.split())
49 ALL = TYPES | TYPE_MODIFIERS | ACCESS | CASTS | OTHERS | OTHER_TYPES | CONTROL | EXCEPTION | LOOP
  /external/guava/guava-testlib/test/com/google/common/testing/
TestLogHandlerTest.java 35 @Override protected void setUp() throws Exception {
47 public void tearDown() throws Exception {
54 public void test() throws Exception {
60 assertSame(EXCEPTION, record.getThrown());
63 public void testConcurrentModification() throws Exception {
87 static final Exception EXCEPTION = new Exception();
94 logger.log(Level.INFO, "message", EXCEPTION);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
SingleStepWithPendingExceptionTest.java 29 * JDWP Unit test for SINGLE_STEP event with pending exception.
39 * Tests that we properly single-step OUT of a method throwing an exception
42 * We execute the test method once with an EXCEPTION event request to capture the
44 * Then we set a BREAKPOINT event in the method throwing the exception and execute
60 // Request exception event.
66 // Wait for exception and remember catch location.
68 debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.EXCEPTION);
71 assertEventKindEquals("Expected EXCEPTION event", parsedEvents[0].getEventKind(),
72 JDWPConstants.EventKind.EXCEPTION);
79 // Remove exception request
    [all...]
ExceptionBaseTest.java 30 * Base class for EXCEPTION tests.
35 * Waits for EXCEPTION event and checks it is the one we expect and the event
49 JDWPConstants.EventKind.EXCEPTION,
51 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.EXCEPTION),
62 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.EXCEPTION, requestID);
BreakpointOnCatchTest.java 43 * (with a pending exception).
54 // First, we set an EXCEPTION caught event to know the location of the catch.
57 // Execute the EXCEPTION.
60 // Wait for EXCEPTION event.
62 debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.EXCEPTION);
72 // Clear the EXCEPTION event.
73 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.EXCEPTION, exceptionRequestID);
78 // The debuggee is suspended on the EXCEPTION event: resume it to hit the BREAKPOINT event.
EventWithExceptionTest.java 31 * an EXCEPTION event where the exception is caught (by a catch handler).
68 * Tests we properly BREAKPOINT in the catch handler if we request it before the EXCEPTION
77 // Set EXCEPTION event
82 // Wait for EXCEPTION event
83 ParsedEvent exceptionEvent = waitForEvent(JDWPConstants.EventKind.EXCEPTION,
90 // Remove EXCEPTION event.
91 clearEvent(JDWPConstants.EventKind.EXCEPTION, exceptionRequestId, true);
93 // Resume debuggee suspended on EXCEPTION event.
94 logWriter.println("Resume debuggee after EXCEPTION event")
    [all...]
ExceptionWithLocationTest.java 28 * JDWP Unit test for caught EXCEPTION event with LocationOnly modifier.
33 // Cache exception class ID.
37 * This testcase is for caught EXCEPTION event with LocationOnly
41 * The test verifies that requested EXCEPTION event occurs in the
47 runEventWithLocationTest(JDWPConstants.EventKind.EXCEPTION);
81 TaggedObject exception = eventException.getException(); local
82 assertEquals(JDWPConstants.Tag.OBJECT_TAG, exception.tag);
84 long thrownExceptionClassId = getObjectReferenceType(exception.objectID);
85 assertEquals("Received incorrect exception",
CombinedExceptionEventsTest.java 31 * JDWP Unit test for combined EXCEPTION events.
40 * Tests combined EXCEPTION events for caught exception. It runs the
42 * EXCEPTION events for caught exception.
49 * Tests combined EXCEPTION events for uncaught exception. It runs the
51 * EXCEPTION events for uncaught exception.
58 * Tests combined EXCEPTION events. It runs the CombinedExceptionEventsDebugge
    [all...]
  /external/ltp/testcases/kdump/lib/
test.sh 72 insmod "${lkdtm}"/lkdtm.ko cpoint_name=INT_HARDWARE_ENTRY cpoint_type=EXCEPTION cpoint_count=05
88 insmod "${lkdtm}"/lkdtm.ko cpoint_name=INT_HW_IRQ_EN cpoint_type=EXCEPTION cpoint_count=10
104 insmod "${lkdtm}"/lkdtm.ko cpoint_name=INT_TASKLET_ENTRY cpoint_type=EXCEPTION cpoint_count=10
120 insmod "${lkdtm}"/lkdtm.ko cpoint_name=FS_DEVRW cpoint_type=EXCEPTION cpoint_count=10
136 insmod "${lkdtm}"/lkdtm.ko cpoint_name=MEM_SWAPOUT cpoint_type=EXCEPTION cpoint_count=10
152 insmod "${lkdtm}"/lkdtm.ko cpoint_name=TIMERADD cpoint_type=EXCEPTION cpoint_count=10
168 insmod "${lkdtm}"/lkdtm.ko cpoint_name=SCSI_DISPATCH_CMD cpoint_type=EXCEPTION cpoint_count=10
184 insmod "${lkdtm}"/lkdtm.ko cpoint_name=IDE_CORE_CP cpoint_type=EXCEPTION cpoint_count=10
  /tools/loganalysis/src/com/android/loganalysis/parser/
JavaCrashParser.java 31 * Matches: java.lang.Exception
32 * Matches: java.lang.Exception: reason
34 private static final Pattern EXCEPTION = Pattern.compile("^([^\\s:]+)(: (.*))?$");
36 * Matches: Caused by: java.lang.Exception
44 // Sometimes logcat explicitly marks where exception begins and ends
45 private static final String BEGIN_MARKER = "----- begin exception -----";
46 private static final String END_MARKER = "----- end exception -----";
76 Matcher exceptionMatch = EXCEPTION.matcher(line);
88 // Match: Caused by: java.lang.Exception
  /external/v8/src/
json-stringifier.cc 100 DCHECK(result == EXCEPTION);
246 return EXCEPTION;
259 return EXCEPTION;
281 return EXCEPTION;
285 isolate_, object, ApplyToJsonFunction(object, key), EXCEPTION);
290 EXCEPTION);
355 isolate_, value, Object::ToString(isolate_, object), EXCEPTION);
360 EXCEPTION);
415 return EXCEPTION;
433 return EXCEPTION;
    [all...]
  /system/libhidl/base/
Status.cpp 64 #define EXCEPTION_TO_STRING_PAIR(EXCEPTION) {Status::Exception::EXCEPTION, #EXCEPTION}
110 mErrorCode = NO_ERROR; // an exception, not a transaction failure.
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
RunHostCommandTargetPreparer.java 93 case EXCEPTION:
94 CLog.e("Exception occurred when running command %s.", command);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Deoptimization/
DeoptimizationWithExceptionHandlingTest.java 36 * This tests checks we properly handle exception event when we fully
51 * This tests checks we properly handle exception event when we fully
52 * deoptimize the stack and are able to receive EXCEPTION event for the
53 * thrown exception.
56 * to cause a full deoptimization of the stack and an EXCEPTION event
57 * to check we do suspend the debuggee for the thrown exception, and
59 * Then we wait for the EXCEPTION event to be posted and resume the
79 // Request Exception event to test we suspend for this event during deoptimization.
87 // Wait for the Exception event.
90 // Resume the debuggee from the exception
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
Dbg.stg 202 "DBG->recognitionException(DBG, EXCEPTION);<\n>"
218 "DBG->recognitionException(DBG, EXCEPTION);"
220 @newNVException.noViableAltException() ::= "DBG->recognitionException(DBG, EXCEPTION);"
226 DBG->recognitionException(DBG, EXCEPTION);
236 // DBG->recognitionException(DBG, EXCEPTION);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 280 public static final byte EXCEPTION = 4;
342 case EXCEPTION:
343 return "EXCEPTION";
  /external/ltp/testcases/kdump/lib/lkdtm/
lkdtm.c 42 * It can be one of PANIC, BUG, EXCEPTION, LOOP, OVERFLOW
86 EXCEPTION,
105 "EXCEPTION",
262 case EXCEPTION:
263 printk(KERN_INFO "lkdtm : EXCEPTION\n");

Completed in 477 milliseconds

1 2 3 4 5 6 7