HomeSort by relevance Sort by last modified time
    Searched refs:startPreview (Results 1 - 25 of 29) sorted by null

1 2

  /packages/wallpapers/Basic/src/com/android/wallpaper/walkaround/
WalkAroundWallpaper.java 64 mCamera.startPreview();
126 startPreview();
152 if (isVisible()) startPreview();
161 private void startPreview() {
212 mCamera.startPreview();
  /frameworks/base/include/camera/
ICamera.h 56 virtual status_t startPreview() = 0;
CameraHardwareInterface.h 69 * -# startPreview() is called. The camera instance then periodically
127 virtual status_t startPreview() = 0;
Camera.h 172 status_t startPreview();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CameraTest.java 194 mCamera.startPreview();
210 mCamera.startPreview();
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 268 mCamera.startPreview();
280 method = "startPreview",
324 mCamera.startPreview();
362 method = "startPreview",
408 mCamera.startPreview();
462 // Check the order: startPreview->setPreviewDisplay.
464 mCamera.startPreview();
470 // Check the order: setPreviewDisplay->startPreview.
475 mCamera.startPreview();
480 // Check the order: setting preview display to null->startPreview-
    [all...]
  /frameworks/base/services/camera/libcameraservice/
CameraHardwareStub.h 44 virtual status_t startPreview();
CameraService.h 92 virtual status_t startPreview();
CameraHardwareStub.cpp 195 status_t CameraHardwareStub::startPreview()
CameraService.cpp 614 status_t CameraService::Client::startPreview() {
615 LOG1("startPreview (pid %d)", getCallingPid());
665 result = mHardware->startPreview();
668 result = mHardware->startPreview();
    [all...]
  /device/samsung/crespo/libcamera/
SecCameraHWInterface.h 44 virtual status_t startPreview();
SecCamera.h 322 int startPreview(void);
SecCameraHWInterface.cpp 618 status_t CameraHardwareSec::startPreview()
643 ret = mSecCamera->startPreview();
644 LOGV("%s : mSecCamera->startPreview() returned %d", __func__, ret);
647 LOGE("ERR(%s):Fail on mSecCamera->startPreview()", __func__);
    [all...]
SecCamera.cpp 914 int SecCamera::startPreview(void)
1238 ret = startPreview();
1245 LOGE("ERR(%s): startPreview() return %d\n", __func__, ret);
    [all...]
  /hardware/msm7k/libcamera/
QualcommCameraHardware.h 37 virtual status_t startPreview(preview_callback cb, void* user);
185 // QualcommCameraHardware::startPreview(), and stay in until libqcamera
  /frameworks/base/libs/camera/
Camera.cpp 197 status_t Camera::startPreview()
199 LOGV("startPreview");
202 return c->startPreview();
ICamera.cpp 90 status_t startPreview()
92 LOGV("startPreview");
275 reply->writeInt32(startPreview());
  /frameworks/base/services/camera/tests/CameraServiceTest/
CameraServiceTest.cpp 635 ASSERT(c->startPreview() == NO_ERROR);
653 ASSERT(c->startPreview() == NO_ERROR);
667 ASSERT(c->startPreview() == NO_ERROR);
813 ASSERT(c->startPreview() == NO_ERROR);
860 c->startPreview();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 166 mCamera.startPreview();
254 mCamera.startPreview();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CameraPreview.java 217 mCamera.startPreview();
  /packages/apps/Camera/src/com/android/camera/
VideoCamera.java 263 startPreview();
306 startPreview();
388 // Initialize the HeadUpDiplay after startPreview(). We need mParameters
677 private void startPreview() throws CameraHardwareException {
678 Log.v(TAG, "startPreview");
694 mCameraDevice.startPreview();
698 throw new RuntimeException("startPreview failed", ex);
    [all...]
Camera.java     [all...]
  /frameworks/base/core/jni/
android_hardware_Camera.cpp 398 LOGV("startPreview");
402 if (camera->startPreview() != NO_ERROR) {
403 jniThrowException(env, "java/lang/RuntimeException", "startPreview failed");
606 { "startPreview",
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
MediaPlayerPerformance.java 246 mCamera.startPreview();
  /frameworks/base/core/java/android/hardware/
Camera.java 66 * <li><b>Important</b>: Call {@link #startPreview()} to start updating the
74 * photos, call {@link #startPreview()} again first.
337 * <p>This method must be called before {@link #startPreview()}. The
339 * before startPreview() is called, then this method may be called once
366 * @see #startPreview()
396 public native final void startPreview();
400 * resets the camera for a future call to {@link #startPreview()}.
625 * (between {@link #startPreview()} and before {@link #stopPreview()}).
727 * {@link #startPreview()}). Preview will be stopped after the image is
728 * taken; callers must call {@link #startPreview()} again if they want t
    [all...]

Completed in 1317 milliseconds

1 2