Searched defs:exception (Results 26 - 27 of 27) sorted by relevance

12

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphRunner.java176 // Exception during exception recovery? Abort all processing. Do not
177 // overwrite the original exception.
553 * thrown exception is passed to the listener in this method. If no listener is set, the
554 * exception message is logged to the error stream. You will not receive an
557 * @param exception the exception that was thrown.
560 public void onGraphRunnerError(Exception exception, boolean closedSuccessfully); argument
1002 private void onRunnerStopped(final Exception exception, final boolean closed) { argument
1009 if (exception == null) {
1012 mParams.listener.onGraphRunnerError(exception, close
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionGroup.java413 private Throwable getRootCause(Throwable exception) { argument
414 Throwable cause = exception.getCause();
416 exception = cause;
417 cause = exception.getCause();
419 return exception;
1423 private void onError(Throwable exception) { argument
1424 exception = getRootCause(exception);
1425 onError(getErrorCode(exception), exception
1464 getErrorCode(Throwable exception) argument
[all...]

Completed in 63 milliseconds

12