Searched refs:errorFlag (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DLegacyExceptionUtils.java64 * @param errorFlag error to throw as an exception.
67 * @return {@code errorFlag} if the value was non-negative, throws otherwise.
69 public static int throwOnError(int errorFlag) throws BufferQueueAbandonedException { argument
70 if (errorFlag == NO_ERROR) {
72 } else if (errorFlag == BAD_VALUE) {
76 if (errorFlag < 0) {
77 throw new UnsupportedOperationException("Unknown error " + errorFlag);
79 return errorFlag;
85 * @param errorFlag error to throw as an exception.
87 public static void throwOnServiceError(int errorFlag) { argument
[all...]

Completed in 58 milliseconds