Home
last modified time | relevance | path

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

/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DDropBoxReceiver.java55 String stackTrace = entry.getText(64 * 1024); in DropBoxReceiver()
58 boolean matched = stackTrace.contains(line); in DropBoxReceiver()
/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()