/platform_testing/libraries/flicker/test/src/com/android/server/wm/flicker/ |
D | Utils.kt | 89 } catch (t: Throwable) { in assertThrows() 91 expectedThrowable.isInstance(t) -> return t in assertThrows() 92 t is Exception -> in assertThrows() 93 throw AssertionError("Expected $expectedThrowable, but got ${t.javaClass}", t) in assertThrows() 95 else -> throw t in assertThrows()
|
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/ |
D | AuptTestRunner.java | 307 public void addError(Test test, Throwable t) {} 310 public void addFailure(Test test, AssertionFailedError t) {} 477 public void addError(Test test, Throwable t) { 478 Log.e(LOG_TAG, "Caught exception from a test", t); 480 if ((t instanceof AuptTerminator)) { 481 throw (AuptTerminator)t; 501 throw new AuptTerminator(t.getMessage(), t); 505 public void addFailure(Test test, AssertionFailedError t) { 507 throw new AuptTerminator(t.getMessage(), t); 597 for (Thread t : stacks.keySet()) { [all …]
|
D | DexTestRunner.java | 276 void onError(Test test, Throwable t) { in onError() argument 277 if (t instanceof AssertionFailedError) { in onError() 279 listener.addFailure(test, (AssertionFailedError) t); in onError() 283 listener.addError(test, t); in onError()
|
D | DataCollector.java | 125 Long t = SystemClock.uptimeMillis() - mLastUpdate.get(entry.getKey()); in loop() local 127 if (entry.getValue() > 0 && t >= entry.getValue()) { in loop()
|
/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/ |
D | BusinessLogicExecutor.java | 83 Throwable t = e.getCause(); in executeAction() 84 if (AssumptionViolatedException.class.isInstance(t)) { in executeAction() 87 throw (AssumptionViolatedException) t; in executeAction() 89 RuntimeException re = new RuntimeException(t.getMessage(), t.getCause()); in executeAction() 90 re.setStackTrace(t.getStackTrace()); in executeAction()
|
D | BackupUtils.java | 371 for (String t : output.split("\n")) { in userHasBackupTransport() 373 t = t.replace("*", "").trim(); in userHasBackupTransport() 374 if (transport.equals(t)) { in userHasBackupTransport()
|
/platform_testing/libraries/app-helpers/core/src/android/platform/helpers/exceptions/ |
D | MappedMultiException.java | 40 private String stackTraceToString(Throwable t) { in stackTraceToString() argument 42 t.printStackTrace(new PrintWriter(stringWriter)); in stackTraceToString()
|
/platform_testing/libraries/app-helpers/core/src/android/platform/helpers/ |
D | HelperManager.java | 288 private TestHelperException wrapThrowable(String message, Throwable t) { in wrapThrowable() argument 289 Throwable causeIfPresent = getCauseIfPresent(t); in wrapThrowable() 300 private Throwable getCauseIfPresent(Throwable t) { in getCauseIfPresent() argument 301 return t.getCause() == null ? t : t.getCause(); in getCauseIfPresent()
|
/platform_testing/tests/health/scenarios/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/health/rules/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/health/composers/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/health/runners/longevity/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/health/utils/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/health/runners/microbenchmark/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/audio-test-harness/server/src/test/java/com/android/media/audiotestharness/server/service/ |
D | StreamObserverOutputStreamFactoryTests.java | 71 public void onError(Throwable t) {} in createNewCaptureChunkStreamObserverOutputStream_returnsNonNullInstance()
|
D | AudioTestHarnessImplTests.java | 173 public void onError(Throwable t) {} in capture_callsStopOnSessionWhenCanceled() argument
|
D | CaptureChunkStreamObserverOutputStreamTests.java | 366 public void onError(Throwable t) {} in createStreamObserverThatWritesTo() argument
|
/platform_testing/libraries/health/rules/src/android/platform/test/rule/ |
D | TestMetricRule.java | 152 protected void failed(Throwable t, Description description) { in failed() argument 153 Failure failure = new Failure(description, t); in failed()
|
/platform_testing/libraries/health/runners/longevity/platform/src/android/platform/test/longevity/ |
D | ProfileSuite.java | 85 } catch (Throwable t) { in constructClassRunners() 86 throw new InitializationError(t); in constructClassRunners()
|
D | LongevitySuite.java | 156 } catch (Throwable t) { in constructClassRunners() 157 throw new InitializationError(t); in constructClassRunners()
|
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/windowmanager/windows/ |
D | Task.kt | 80 fun getTask(taskId: Int) = getTask { t -> t.taskId == taskId } in <lambda>() method
|
/platform_testing/tests/perf/PerfTransitionTest/src/com/android/apptransition/tests/ |
D | AppTransitionTests.java | 457 Thread t = new Thread(runnable); in startApp() local 458 t.start(); in startApp() 460 t.join(JOIN_TIMEOUT); in startApp()
|
/platform_testing/libraries/compatibility-common-util/tests/assets/ |
D | logcat.txt | 27 09-03 17:48:05.967 11272 11568 W NativeCrashListener: Couldn't find ProcessRecord for pid 11071 62 06-15 19:57:33.839 934 2991 W NativeCrashListener: Couldn't find ProcessRecord for pid 12736 95 06-15 19:57:35.346 934 2991 W NativeCrashListener: Couldn't find ProcessRecord for pid 26201 126 06-15 19:57:40.882 934 2991 W NativeCrashListener: Couldn't find ProcessRecord for pid 26246 298 09-03 17:48:05.967 11272 11568 W NativeCrashListener: Couldn't find ProcessRecord for pid 11071 333 06-15 19:57:33.839 934 2991 W NativeCrashListener: Couldn't find ProcessRecord for pid 12736
|