HomeSort by relevance Sort by last modified time
    Searched refs:CameraRuntimeException (Results 1 - 8 of 8) sorted by null

  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraUtilsRuntimeExceptionTest.java 20 import android.hardware.camera2.utils.CameraRuntimeException;
31 CameraRuntimeException runtimeExc = new CameraRuntimeException(12345);
43 CameraRuntimeException runtimeExc = new CameraRuntimeException(12345, "Hello");
56 CameraRuntimeException runtimeExc = new CameraRuntimeException(12345, cause);
69 CameraRuntimeException runtimeExc = new CameraRuntimeException(12345, "Hello", cause);
CameraUtilsBinderDecoratorTest.java 21 import android.hardware.camera2.utils.CameraRuntimeException;
50 int doSomethingDeadObject() throws CameraRuntimeException;
52 int doSomethingBadPolicy() throws CameraRuntimeException;
54 int doSomethingDeviceBusy() throws CameraRuntimeException;
56 int doSomethingNoSuchDevice() throws CameraRuntimeException;
119 Assert.fail("Should've thrown CameraRuntimeException");
120 } catch (CameraRuntimeException e) {
126 Assert.fail("Should've thrown CameraRuntimeException");
127 } catch (CameraRuntimeException e) {
133 Assert.fail("Should've thrown CameraRuntimeException");
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/utils/
CameraBinderDecorator.java 81 throw new CameraRuntimeException(CAMERA_DISCONNECTED,
116 throw new CameraRuntimeException(CAMERA_DISCONNECTED);
118 throw new CameraRuntimeException(CAMERA_ERROR,
121 throw new CameraRuntimeException(CAMERA_DISABLED);
123 throw new CameraRuntimeException(CAMERA_IN_USE);
125 throw new CameraRuntimeException(MAX_CAMERAS_IN_USE);
127 throw new CameraRuntimeException(CAMERA_DISCONNECTED);
129 throw new CameraRuntimeException(CAMERA_DEPRECATED_HAL);
131 throw new CameraRuntimeException(CAMERA_ERROR,
CameraRuntimeException.java 8 public class CameraRuntimeException extends RuntimeException {
18 public CameraRuntimeException(int problem) {
23 public CameraRuntimeException(int problem, String message) {
29 public CameraRuntimeException(int problem, String message, Throwable cause) {
36 public CameraRuntimeException(int problem, Throwable cause) {
  /frameworks/base/core/java/android/hardware/camera2/
CameraManager.java 27 import android.hardware.camera2.utils.CameraRuntimeException;
200 } catch (CameraRuntimeException e) {
257 throw new CameraRuntimeException(
269 } catch (CameraRuntimeException e) {
293 CameraRuntimeException ce = new CameraRuntimeException(
310 } catch (CameraRuntimeException e) {
448 } catch(CameraRuntimeException e) {
470 } catch(CameraRuntimeException e) {
534 } catch (CameraRuntimeException e)
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraDeviceImpl.java 32 import android.hardware.camera2.utils.CameraRuntimeException;
269 public void setRemoteFailure(final CameraRuntimeException failure) {
393 } catch (CameraRuntimeException e) {
482 } catch (CameraRuntimeException e) {
622 } catch (CameraRuntimeException e) {
695 } catch (CameraRuntimeException e) {
715 } catch (CameraRuntimeException e) {
744 } catch (CameraRuntimeException e) {
760 } catch (CameraRuntimeException e) {
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
CameraDeviceUserShim.java 30 import android.hardware.camera2.utils.CameraRuntimeException;
173 * @throws CameraRuntimeException if the camera open times out with ({@code CAMERA_ERROR})
186 throw new CameraRuntimeException(CameraAccessException.CAMERA_ERROR);
343 throw new CameraRuntimeException(CameraAccessException.CAMERA_ERROR,
LegacyCameraDevice.java 32 import android.hardware.camera2.utils.CameraRuntimeException;
487 } catch (CameraRuntimeException e) {

Completed in 726 milliseconds