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

  /frameworks/native/libs/gui/
Sensor.cpp 43 Sensor::Sensor(struct sensor_t const* hwSensor, int halVersion)
59 if (halVersion > SENSORS_DEVICE_API_VERSION_1_0) {
67 if (halVersion >= SENSORS_DEVICE_API_VERSION_1_3) {
148 if (halVersion < SENSORS_DEVICE_API_VERSION_1_3) {
163 if (halVersion < SENSORS_DEVICE_API_VERSION_1_3) {
182 if (halVersion < SENSORS_DEVICE_API_VERSION_1_3) {
189 if (halVersion < SENSORS_DEVICE_API_VERSION_1_3) {
196 if (halVersion < SENSORS_DEVICE_API_VERSION_1_3) {
203 if (halVersion < SENSORS_DEVICE_API_VERSION_1_3) {
209 if (halVersion > SENSORS_DEVICE_API_VERSION_1_0 && hwSensor->stringType)
    [all...]
  /device/lge/hammerhead/camera/QCamera2/HAL3/
QCamera3Factory.h 49 const char* id, uint32_t halVersion, struct hw_device_t** device);
QCamera3Factory.cpp 148 * @halVersion: Based on camera_module_t.common.module_api_version
154 const char* id, uint32_t halVersion, struct hw_device_t** device)
  /device/moto/shamu/camera/QCamera2/
QCamera2Factory.h 54 const char* id, uint32_t halVersion, struct hw_device_t** device);
QCamera2Factory.cpp 177 * @halVersion: Based on camera_module_t.common.module_api_version
183 const char* id, uint32_t halVersion, struct hw_device_t** device)
  /frameworks/base/core/java/android/hardware/
ICameraService.aidl 79 int halVersion,
Camera.java 387 * @param halVersion The HAL API version this camera device to be opened as.
390 * @throws IllegalArgumentException if the {@code halVersion} is invalid
401 public static Camera openLegacy(int cameraId, int halVersion) {
402 if (halVersion < CAMERA_HAL_API_VERSION_1_0) {
403 throw new IllegalArgumentException("Invalid HAL version " + halVersion);
406 return new Camera(cameraId, halVersion);
414 * @param halVersion The HAL API version this camera device to be opened as.
416 private Camera(int cameraId, int halVersion) {
417 int err = cameraInitVersion(cameraId, halVersion);
446 private int cameraInitVersion(int cameraId, int halVersion) {
    [all...]
  /hardware/libhardware/include/hardware/
camera_common.h 426 uint32_t halVersion, struct hw_device_t** device);
  /frameworks/av/include/camera/
ICameraService.h 136 * For halVersion, use CAMERA_API_DEVICE_VERSION_* for a particular
140 int cameraId, int halVersion,
Camera.h 77 static status_t connectLegacy(int cameraId, int halVersion,
  /frameworks/native/include/gui/
Sensor.h 56 Sensor(struct sensor_t const* hwSensor, int halVersion = 0);
  /frameworks/native/services/sensorservice/
SensorDevice.cpp 82 result.appendFormat("halVersion %d\n", getHalDeviceVersion());
167 const int halVersion = getHalDeviceVersion();
168 if (halVersion >= SENSORS_DEVICE_API_VERSION_1_1) {
218 const int halVersion = getHalDeviceVersion();
219 if (halVersion < SENSORS_DEVICE_API_VERSION_1_1 && maxBatchReportLatencyNs != 0) {
252 if (halVersion >= SENSORS_DEVICE_API_VERSION_1_1) {
SensorService.cpp 391 const int halVersion = device.getHalDeviceVersion();
470 if (halVersion < SENSORS_DEVICE_API_VERSION_1_0) {
    [all...]
  /frameworks/av/camera/
ICameraService.cpp 191 int halVersion,
199 data.writeInt32(halVersion);
477 int32_t halVersion = data.readInt32();
481 status_t status = connectLegacy(cameraClient, cameraId, halVersion,
Camera.cpp 80 status_t Camera::connectLegacy(int cameraId, int halVersion,
92 status = cs.get()->connectLegacy(cl, cameraId, halVersion, clientPackageName,
  /frameworks/av/services/camera/libcameraservice/
CameraService.cpp 671 int halVersion,
677 if (halVersion < 0 || halVersion == deviceVersion) {
706 halVersion == CAMERA_DEVICE_API_VERSION_1_0) {
714 " opened as HAL %x device", halVersion, deviceVersion,
786 int cameraId, int halVersion,
792 if (halVersion != CAMERA_HAL_API_VERSION_UNSPECIFIED &&
835 halVersion,
    [all...]
CameraService.h 87 int halVersion, const String16& clientPackageName, int clientUid,
464 int halVersion = CAMERA_HAL_API_VERSION_UNSPECIFIED,
  /frameworks/base/core/jni/
android_hardware_Camera.cpp 517 jobject weak_this, jint cameraId, jint halVersion, jstring clientPackageName)
526 if (halVersion == CAMERA_HAL_API_VERSION_NORMAL_CONNECT) {
531 jint status = Camera::connectLegacy(cameraId, halVersion, clientName,
    [all...]

Completed in 636 milliseconds