Home | History | Annotate | Download | only in camera

Lines Matching refs:mCameraDevice

388                     mCameraDevice = Util.openCamera(VideoCamera.this, mCameraId);
792 mParameters = mCameraDevice.getParameters();
840 mCameraDevice = Util.openCamera(this, mCameraId);
902 mCameraDevice.setPreviewDisplay(holder);
913 mCameraDevice.setErrorCallback(mErrorCallback);
915 mCameraDevice.stopPreview();
924 mCameraDevice.setDisplayOrientation(orientation);
930 mCameraDevice.startPreview();
947 if (mCameraDevice == null) {
956 mCameraDevice.setZoomChangeListener(null);
957 mCameraDevice.setErrorCallback(null);
958 mCameraDevice = null;
1093 // The mCameraDevice will be null if it is fail to connect to the
1096 if (mCameraDevice == null) return;
1167 // If the mCameraDevice is null, then this activity is going to finish
1168 if (mCameraDevice == null) return;
1197 mCameraDevice.unlock();
1198 mMediaRecorder.setCamera(mCameraDevice);
1274 // If the mCameraDevice is null, then this activity is going to finish
1275 if (mCameraDevice == null) return;
1289 mEffectsRecorder.setCamera(mCameraDevice);
1589 mCameraDevice.lock();
1880 mParameters = mCameraDevice.getParameters();
1953 mCameraDevice.setParameters(mParameters);
1955 mParameters = mCameraDevice.getParameters();
2104 // If mCameraDevice is not ready then we can set the parameter in
2106 if (mCameraDevice == null) return;
2143 mCameraDevice.stopPreview();
2186 mCameraDevice.stopPreview();
2276 mCameraDevice.stopSmoothZoom();
2285 mParameters = mCameraDevice.getParameters();
2295 mCameraDevice.setZoomChangeListener(mZoomListener);
2314 mCameraDevice.startSmoothZoom(mTargetZoomValue);
2332 mCameraDevice.stopSmoothZoom();
2336 mCameraDevice.startSmoothZoom(index);
2383 mCameraDevice.setParameters(mParameters);
2386 mCameraDevice.takePicture(null, null, null, new JpegPictureCallback(loc));