/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/ |
D | BlockingCameraManager.java | 55 public static final int ERROR_DISCONNECTED = 0; // Does not clash with ERROR_... field in BlockingCameraManager.BlockingOpenException 60 return mError == ERROR_DISCONNECTED; in wasDisconnected() 64 return mError != ERROR_DISCONNECTED; in wasError() 320 BlockingOpenException.ERROR_DISCONNECTED, in blockUntilOpen()
|
/frameworks/av/media/module/libmediatranscoding/ |
D | TranscodingClientManager.cpp | 125 return Status::fromServiceSpecificError(IMediaTranscodingService::ERROR_DISCONNECTED); in submitRequest() 191 return Status::fromServiceSpecificError(IMediaTranscodingService::ERROR_DISCONNECTED); in cancelSession() 209 return Status::fromServiceSpecificError(IMediaTranscodingService::ERROR_DISCONNECTED); in getSessionWithId() 233 return Status::fromServiceSpecificError(IMediaTranscodingService::ERROR_DISCONNECTED); in addClientUid() 268 return Status::fromServiceSpecificError(IMediaTranscodingService::ERROR_DISCONNECTED); in getClientUids() 288 return Status::fromServiceSpecificError(IMediaTranscodingService::ERROR_DISCONNECTED); in unregister()
|
/frameworks/av/media/module/libmediatranscoding/tests/ |
D | TranscodingClientManager_tests.cpp | 545 EXPECT_EQ(status.getServiceSpecificError(), IMediaTranscodingService::ERROR_DISCONNECTED); in TEST_F() 551 EXPECT_EQ(status.getServiceSpecificError(), IMediaTranscodingService::ERROR_DISCONNECTED); in TEST_F() 555 EXPECT_EQ(status.getServiceSpecificError(), IMediaTranscodingService::ERROR_DISCONNECTED); in TEST_F() 559 EXPECT_EQ(status.getServiceSpecificError(), IMediaTranscodingService::ERROR_DISCONNECTED); in TEST_F() 565 EXPECT_EQ(status.getServiceSpecificError(), IMediaTranscodingService::ERROR_DISCONNECTED); in TEST_F() 569 EXPECT_EQ(status.getServiceSpecificError(), IMediaTranscodingService::ERROR_DISCONNECTED); in TEST_F() 573 EXPECT_EQ(status.getServiceSpecificError(), IMediaTranscodingService::ERROR_DISCONNECTED); in TEST_F()
|
/frameworks/av/media/module/libmediatranscoding/aidl/android/media/ |
D | IMediaTranscodingService.aidl | 37 const int ERROR_DISCONNECTED = 4; field
|
/frameworks/base/core/java/android/hardware/camera2/utils/ |
D | ExceptionUtils.java | 49 case ICameraService.ERROR_DISCONNECTED: in throwAsPublicException()
|
/frameworks/av/services/camera/libcameraservice/api2/ |
D | CameraDeviceClient.cpp | 288 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive"); in submitRequestList() 614 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive"); in cancelRequest() 667 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive"); in endConfigure() 746 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive"); in isSessionConfigurationSupported() 794 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive"); in deleteStream() 922 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive"); in createStream() 1070 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive"); in createDeferredSurfaceStreamLocked() 1162 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive"); in setStreamTransformLocked() 1198 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive"); in createInputStream() 1241 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive"); in getInputSurface() [all …]
|
/frameworks/av/media/module/service.mediatranscoding/tests/ |
D | mediatranscodingservice_simulated_tests.cpp | 359 EXPECT_EQ(status.getServiceSpecificError(), IMediaTranscodingService::ERROR_DISCONNECTED); in TEST_F() 362 EXPECT_EQ(status.getServiceSpecificError(), IMediaTranscodingService::ERROR_DISCONNECTED); in TEST_F() 366 EXPECT_EQ(status.getServiceSpecificError(), IMediaTranscodingService::ERROR_DISCONNECTED); in TEST_F()
|
/frameworks/av/camera/aidl/android/hardware/ |
D | ICameraService.aidl | 50 const int ERROR_DISCONNECTED = 4; field
|
/frameworks/av/services/camera/libcameraservice/ |
D | CameraService.cpp | 278 ERROR_DISCONNECTED); in enumerateProviders() 835 logServiceError("Camera subsystem is not available", ERROR_DISCONNECTED); in createDefaultRequest() 836 return STATUS_ERROR(ERROR_DISCONNECTED, "Camera subsystem is not available"); in createDefaultRequest() 898 logServiceError("Camera subsystem is not available", ERROR_DISCONNECTED); in isSessionConfigurationWithParametersSupported() 899 return STATUS_ERROR(ERROR_DISCONNECTED, "Camera subsystem is not available"); in isSessionConfigurationWithParametersSupported() 998 logServiceError("Camera subsystem is not available", ERROR_DISCONNECTED); in getSessionCharacteristics() 999 return STATUS_ERROR(ERROR_DISCONNECTED, "Camera subsystem is not available"); in getSessionCharacteristics() 1226 logServiceError("Camera subsystem is not available", ERROR_DISCONNECTED); in getCameraInfo() 1227 return STATUS_ERROR(ERROR_DISCONNECTED, in getCameraInfo() 1300 logServiceError("Camera subsystem is not available", ERROR_DISCONNECTED); in getCameraCharacteristics() [all …]
|
/frameworks/base/core/java/android/hardware/camera2/ |
D | CameraManager.java | 676 ICameraService.ERROR_DISCONNECTED, in getPhysicalCameraMultiResolutionConfigs() 1002 ICameraService.ERROR_DISCONNECTED, in openCameraDeviceUserAsync() 1017 e.errorCode == ICameraService.ERROR_DISCONNECTED || in openCameraDeviceUserAsync() 1025 e.errorCode == ICameraService.ERROR_DISCONNECTED || in openCameraDeviceUserAsync() 1037 ICameraService.ERROR_DISCONNECTED, in openCameraDeviceUserAsync() 1990 ICameraService.ERROR_DISCONNECTED, in injectCamera() 2661 case ICameraService.ERROR_DISCONNECTED: in handleRecoverableSetupErrors()
|
/frameworks/av/camera/ndk/impl/ |
D | ACameraManager.cpp | 247 hardware::ICameraService::ERROR_DISCONNECTED) { in getCameraServiceLocked() 819 case hardware::ICameraService::ERROR_DISCONNECTED: in getCameraCharacteristics() 876 case hardware::ICameraService::ERROR_DISCONNECTED: in openCamera()
|
/frameworks/base/core/jni/ |
D | android_hardware_camera2_CameraMetadata.cpp | 947 return hardware::ICameraService::ERROR_DISCONNECTED; in CameraMetadata_setupGlobalVendorTagDescriptor() 953 if (res.serviceSpecificErrorCode() == hardware::ICameraService::ERROR_DISCONNECTED) { in CameraMetadata_setupGlobalVendorTagDescriptor() 968 if (res.serviceSpecificErrorCode() == hardware::ICameraService::ERROR_DISCONNECTED) { in CameraMetadata_setupGlobalVendorTagDescriptor()
|
/frameworks/av/services/camera/libcameraservice/hidl/ |
D | Utils.cpp | 238 case hardware::ICameraService::ERROR_DISCONNECTED: in B2HStatus()
|
/frameworks/av/services/camera/libcameraservice/aidl/ |
D | AidlUtils.cpp | 183 case hardware::ICameraService::ERROR_DISCONNECTED: in convertToAidl()
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
D | CameraDeviceImpl.java | 457 case ICameraService.ERROR_DISCONNECTED: in setRemoteFailure()
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 20698 Landroid/hardware/ICameraService;->ERROR_DISCONNECTED:I
|