Searched refs:stackTrace (Results 1 – 4 of 4) sorted by relevance
55 String stackTrace = entry.getText(64 * 1024); in DropBoxReceiver()58 boolean matched = stackTrace.contains(line); in DropBoxReceiver()
391 Throwable stackTrace = new Throwable(); in logWithStack() local392 stackTrace.fillInStackTrace(); in logWithStack()393 Log.e(TAG, message, stackTrace); in logWithStack()
186 protected void logWithStack(String message, Throwable stackTrace) { in logWithStack() argument187 if (stackTrace == null) { in logWithStack()188 stackTrace = new Throwable(); in logWithStack()189 stackTrace.fillInStackTrace(); in logWithStack()191 Log.e(TAG, message, stackTrace); in logWithStack()
455 Throwable stackTrace = new Throwable(); in logWithStack() local456 stackTrace.fillInStackTrace(); in logWithStack()457 Log.e(TAG, message, stackTrace); in logWithStack()