Home
last modified time | relevance | path

Searched refs:stackTrace (Results 1 – 4 of 4) sorted by relevance

/cts/hostsidetests/incident/apps/errorsapp/src/com/android/server/cts/errors/
DErrorsTests.java144 String stackTrace = entry.getText(64 * 1024); in registerReceiver()
147 boolean matched = stackTrace.contains(line); in registerReceiver()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/qstiles/
DInteractiveVerifierActivity.java391 Throwable stackTrace = new Throwable(); in logWithStack() local
392 stackTrace.fillInStackTrace(); in logWithStack()
393 Log.e(TAG, message, stackTrace); in logWithStack()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/vr/
DVrListenerVerifierActivity.java186 protected void logWithStack(String message, Throwable stackTrace) { in logWithStack() argument
187 if (stackTrace == null) { in logWithStack()
188 stackTrace = new Throwable(); in logWithStack()
189 stackTrace.fillInStackTrace(); in logWithStack()
191 Log.e(TAG, message, stackTrace); in logWithStack()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
DInteractiveVerifierActivity.java455 Throwable stackTrace = new Throwable(); in logWithStack() local
456 stackTrace.fillInStackTrace(); in logWithStack()
457 Log.e(TAG, message, stackTrace); in logWithStack()