/packages/apps/Camera/src/com/android/camera/ui/ |
CameraPicker.java | 17 package com.android.camera.ui; 19 import com.android.camera.CameraPreference.OnPreferenceChangedListener; 20 import com.android.camera.ListPreference; 21 import com.android.camera.R; 24 import android.hardware.Camera.CameraInfo; 28 * A view for switching the front/back camera.
|
/development/tools/emulator/system/camera/ |
EmulatedCameraDevice.h | 22 * functionality expected from an emulated physical camera device: 23 * - Obtaining and setting camera device parameters 37 * functionality expected from an emulated physical camera device: 38 * - Obtaining and setting camera device parameters 47 * camera_hal - Emulated camera that implements the camera HAL API, and 56 * Emulated camera device abstract interface 60 /* Connects to the camera device. 67 /* Disconnects from the camera device. 77 /* Starts the camera device [all...] |
EmulatedCameraFactory.cpp | 33 * initialized when camera emulation HAL is loaded. 49 /* Connection has succeeded. Create emulated cameras for each camera 55 /* ID fake camera with the number of created 'qemud' cameras. */ 64 LOGE("%s: Unable to allocate emulated camera array for %d entries", 71 /* Create, and initialize the fake camera */ 83 LOGE("%s: Unable to instantiate fake camera class", __FUNCTION__); 86 LOGD("Fake camera emulation is disabled."); 89 LOGV("%d cameras are being emulated. Fake camera ID is %d", 108 * Camera HAL API handlers. 127 LOGE("%s: Camera id %d is out of bounds (%d)" [all...] |
CallbackNotifier.h | 22 * via set_callbacks, enable_msg_type, and disable_msg_type camera HAL API. 30 * camera HAL API. 33 * relevant camera API callbacks. 47 * Camera API 52 * This method is called by the containing emulated camera object when it is 62 * This method is called by the containing emulated camera object when it is 68 * This method is called by the containing emulated camera object when it is 74 * callback. This method is called by the containing emulated camera object 83 * This method is called by the containing emulated camera object when it is 95 * This method is called by the containing emulated camera object when it i [all...] |
EmulatedQemuCameraDevice.cpp | 19 * an emulated camera device connected to the host. 61 LOGV("%s: Connected to the emulated camera service '%s'", 72 * Emulated camera device abstract interface implementation. 81 LOGE("%s: Qemu camera device is not initialized.", __FUNCTION__); 85 LOGW("%s: Qemu camera device '%s' is already connected.", 90 /* Connect to the camera device via emulator. */ 110 LOGW("%s: Qemu camera device '%s' is already disconnected.", 120 /* Disconnect from the camera device via emulator. */ 142 LOGE("%s: Qemu camera device '%s' is not connected.", 147 LOGW("%s: Qemu camera device '%s' is already started." [all...] |
PreviewWindow.h | 22 * of a preview window set via set_preview_window camera HAL API. 30 * camera HAL API. 33 * relevant camera API callbacks. 44 * Camera API 49 * This method is called by the containing emulated camera object when it is 65 * This method is called by the containing emulated camera object when it is 71 * This method is called by the containing emulated camera object when it is 87 /* Next frame is available in the camera device. 88 * This is a notification callback that is invoked by the camera device when 91 * that camera device has created for frame capturing [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
CameraPreview.java | 22 import android.hardware.Camera; 23 import android.hardware.Camera.CameraInfo; 24 import android.hardware.Camera.Size; 48 Camera mCamera; 52 // The first rear facing camera 69 numberOfCameras = Camera.getNumberOfCameras(); 71 // Find the ID of the default camera 74 Camera.getCameraInfo(i, cameraInfo); 85 // Open the default i.e. the first rear facing camera. 86 mCamera = Camera.open() [all...] |
/frameworks/base/docs/html/training/camera/ |
index.jd | 17 <li>A device with a camera</li> 23 <li><a href="{@docRoot}guide/topics/media/camera.html">Camera</a></li> 47 leveraging existing camera applications. In later lessons, you dive deeper 48 and learn how to control the camera hardware directly.</p> 58 <dt><b><a href="cameradirect.html">Controlling the Camera</a></b></dt> 59 <dd>Control the camera hardware directly and implement your own camera application.</dd>
|
videobasics.jd | 8 next.title=Controlling the Camera 19 <li><a href="#TaskManifest">Request Camera Permission</a></li> 20 <li><a href="#TaskCaptureIntent">Record a Video with a Camera App</a> 26 <li><a href="{@docRoot}guide/topics/media/camera.html">Camera</a></li> 42 <p>This lesson explains how to capture video using existing camera 47 camcorder. Happily, most Android-powered devices already have a camera application that 52 <h2 id="TaskManifest">Request Camera Permission</h2> 54 <p>To advertise that your application depends on having a camera, put a 59 <uses-feature android:name="android.hardware.camera" /> [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
Rotate3dAnimation.java | 21 import android.graphics.Camera; 35 private Camera mCamera; 65 mCamera = new Camera(); 75 final Camera camera = mCamera; local 79 camera.save(); 81 camera.translate(0.0f, 0.0f, mDepthZ * interpolatedTime); 83 camera.translate(0.0f, 0.0f, mDepthZ * (1.0f - interpolatedTime)); 85 camera.rotateY(degrees); 86 camera.getMatrix(matrix) [all...] |
/frameworks/base/media/java/android/media/ |
CameraProfile.java | 19 import android.hardware.Camera; 20 import android.hardware.Camera.CameraInfo; 28 * quality settings in the Camera application. 51 * used for the given quality level in the Camera application for 52 * the first back-facing camera on the device. If the device has no 53 * back-facing camera, this returns 0. 58 int numberOfCameras = Camera.getNumberOfCameras(); 61 Camera.getCameraInfo(i, cameraInfo); 71 * used for the given quality level in the Camera application for 72 * the specified camera [all...] |
/packages/apps/Camera/res/layout/ |
share_popup.xml | 21 xmlns:camera="http://schemas.android.com/apk/res/com.android.camera" 30 <com.android.camera.ui.RotateLayout 39 <com.android.camera.ui.StackLayout 54 </com.android.camera.ui.StackLayout> 62 </com.android.camera.ui.RotateLayout> 68 <com.android.camera.ui.RotateLayout 81 </com.android.camera.ui.RotateLayout> 90 <com.android.camera.ui.RightAlignedHorizontalScrollView android:id="@+id/share_list_container" 94 <com.android.camera.ui.OneRowGridView android:id="@+id/share_list [all...] |
/packages/apps/Camera/tests/src/com/android/camera/power/ |
ImageAndVideoCapture.java | 17 package com.android.camera.power; 19 import com.android.camera.Camera; 20 import com.android.camera.VideoCamera; 29 * Junit / Instrumentation test case for camera power measurement 34 * -e com.android.camera.power.ImageAndVideoCapture \ 35 * -w com.android.camera.tests/android.test.InstrumentationTestRunner 39 public class ImageAndVideoCapture extends ActivityInstrumentationTestCase2 <Camera> { 49 super(Camera.class); 76 // This test case will use the default camera settin [all...] |
/packages/apps/Camera/tests/src/com/android/camera/stress/ |
SwitchPreview.java | 17 package com.android.camera.stress; 19 import com.android.camera.Camera; 20 import com.android.camera.VideoCamera; 33 * Junit / Instrumentation test case for camera test 38 * -e class com.android.camera.stress.SwitchPreview \ 39 * -w com.android.camera.tests/com.android.camera.CameraStressTestRunner 75 assertTrue("Camera Switch Mode", false); 94 mOut.write("Camera Switch Mode:\n") [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
CameraTest.java | 23 import android.hardware.Camera; 24 import android.hardware.Camera.PictureCallback; 25 import android.hardware.Camera.PreviewCallback; 26 import android.hardware.Camera.ShutterCallback; 38 * Junit / Instrumentation test case for the camera api 61 Camera mCamera; 73 * Initializes the message looper so that the Camera object can 82 // Set up a looper to be used by camera. 88 mCamera = Camera.open(); 107 // callback still uses the camera object (setHasPreviewCallback) [all...] |
/build/target/board/emulator/ |
BoardConfig.mk | 11 # no hardware camera
|
/development/samples/HoneycombGallery/res/values/ |
strings.xml | 19 <string name="camera_sample">Camera Example</string> 31 <string name="camera">Camera</string> 37 <string name="switch_camera">Switch camera</string>
|
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/ |
manifest.json | 7 "default_icon": "camera.png",
|
/frameworks/base/data/etc/ |
android.hardware.camera.flash-autofocus.xml | 17 <!-- This is the standard set of features for a camera with a flash. Note 20 <feature name="android.hardware.camera" /> 21 <feature name="android.hardware.camera.autofocus" /> 22 <feature name="android.hardware.camera.flash" />
|
/frameworks/base/libs/camera/ |
Android.mk | 5 Camera.cpp \
|
/frameworks/base/media/mediaserver/ |
Android.mk | 18 $(base)/services/camera/libcameraservice \
|
/packages/apps/Camera/tests/ |
Android.mk | 14 LOCAL_INSTRUMENTATION_FOR := Camera
|
/packages/apps/Camera/tests/src/com/android/camera/ |
CameraLaunchPerformance.java | 17 package com.android.camera; 24 * Instrumentation class for Camera launch performance testing. 33 mIntent.setClassName(getTargetContext(), "com.android.camera.Camera");
|
/packages/apps/Gallery/tests/src/com/android/camera/ |
CameraLaunchPerformance.java | 17 package com.android.camera; 24 * Instrumentation class for Camera launch performance testing. 33 mIntent.setClassName(getTargetContext(), "com.android.camera.Camera");
|
UnitTests.java | 17 package com.android.camera; 25 * TestSuite for all Camera unit tests. 32 .excludePackages("com.android.camera.stress") 33 .named("Camera Unit Tests")
|