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

  /frameworks/av/camera/aidl/android/hardware/camera2/params/
VendorTagDescriptor.aidl 20 parcelable VendorTagDescriptor cpp_header "camera/VendorTagDescriptor.h";
  /frameworks/base/core/java/android/hardware/camera2/params/
VendorTagDescriptor.java 30 public final class VendorTagDescriptor implements Parcelable {
32 private VendorTagDescriptor(Parcel source) {
35 public static final Parcelable.Creator<VendorTagDescriptor> CREATOR =
36 new Parcelable.Creator<VendorTagDescriptor>() {
38 public VendorTagDescriptor createFromParcel(Parcel source) {
40 VendorTagDescriptor vendorDescriptor = new VendorTagDescriptor(source);
43 Log.e(TAG, "Exception creating VendorTagDescriptor from parcel", e);
49 public VendorTagDescriptor[] newArray(int size) {
50 return new VendorTagDescriptor[size]
    [all...]
  /hardware/interfaces/camera/common/1.0/default/include/
VendorTagDescriptor.h 35 * VendorTagDescriptor objects are containers for the vendor tag
39 class VendorTagDescriptor {
41 virtual ~VendorTagDescriptor();
43 VendorTagDescriptor();
44 VendorTagDescriptor(const VendorTagDescriptor& src);
45 VendorTagDescriptor& operator=(const VendorTagDescriptor& rhs);
47 void copyFrom(const VendorTagDescriptor& src);
77 * The pointer is valid for the lifetime of the VendorTagDescriptor,
    [all...]
CameraMetadata.h 32 class VendorTagDescriptor;
200 const VendorTagDescriptor* vTags, uint32_t *tag);
  /frameworks/av/camera/include/camera/
VendorTagDescriptor.h 30 class VendorTagDescriptor;
37 * VendorTagDescriptor objects are parcelable containers for the vendor tag
41 class VendorTagDescriptor : public Parcelable {
43 virtual ~VendorTagDescriptor();
45 VendorTagDescriptor();
46 VendorTagDescriptor(const VendorTagDescriptor& src);
47 VendorTagDescriptor& operator=(const VendorTagDescriptor& rhs);
49 void copyFrom(const VendorTagDescriptor& src)
    [all...]
CameraMetadata.h 28 class VendorTagDescriptor;
221 const VendorTagDescriptor* vTags, uint32_t *tag);
  /hardware/interfaces/camera/common/1.0/default/
VendorTagDescriptor.cpp 27 #include "VendorTagDescriptor.h"
37 VendorTagDescriptor::~VendorTagDescriptor() {
44 VendorTagDescriptor::VendorTagDescriptor() :
49 VendorTagDescriptor::VendorTagDescriptor(const VendorTagDescriptor& src) {
53 VendorTagDescriptor& VendorTagDescriptor::operator=(const VendorTagDescriptor& rhs)
    [all...]
CameraMetadata.cpp 24 #include "VendorTagDescriptor.h"
469 const VendorTagDescriptor* vTags, uint32_t *tag) {
  /frameworks/av/camera/tests/
VendorTagDescriptorTests.cpp 21 #include <camera/VendorTagDescriptor.h>
93 * Test if values from VendorTagDescriptor methods match corresponding values
97 sp<VendorTagDescriptor> vDesc;
99 EXPECT_EQ(OK, VendorTagDescriptor::createDescriptorFromOps(vOps, /*out*/vDesc));
129 * Test if values from VendorTagDescriptor methods stay consistent after being
133 sp<VendorTagDescriptor> vDescOriginal, vDescParceled;
135 EXPECT_EQ(OK, VendorTagDescriptor::createDescriptorFromOps(vOps, /*out*/vDescOriginal));
145 vDescParceled = new VendorTagDescriptor();
178 sp<VendorTagDescriptor> vDesc;
186 EXPECT_EQ(BAD_VALUE, VendorTagDescriptor::createDescriptorFromOps(/*vOps*/NULL, vDesc))
    [all...]
  /frameworks/av/camera/
VendorTagDescriptor.cpp 17 #define LOG_TAG "VendorTagDescriptor"
28 #include "camera/VendorTagDescriptor.h"
58 static sp<VendorTagDescriptor> sGlobalVendorTagDescriptor;
65 VendorTagDescriptor::~VendorTagDescriptor() {
72 VendorTagDescriptor::VendorTagDescriptor() :
77 VendorTagDescriptor::VendorTagDescriptor(const VendorTagDescriptor& src)
    [all...]
CameraMetadata.cpp 25 #include <camera/VendorTagDescriptor.h>
701 const VendorTagDescriptor* vTags, uint32_t *tag) {
  /frameworks/av/camera/aidl/android/hardware/
ICameraService.aidl 23 import android.hardware.camera2.params.VendorTagDescriptor;
131 VendorTagDescriptor getCameraVendorTagDescriptor();
  /frameworks/av/camera/ndk/impl/
ACameraManager.cpp 27 #include <camera/VendorTagDescriptor.h>
130 sp<VendorTagDescriptor> desc = new VendorTagDescriptor();
135 status_t err = VendorTagDescriptor::setAsGlobalVendorTagDescriptor(desc);
169 VendorTagDescriptor::clearGlobalVendorTagDescriptor();
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 40 #include <camera/VendorTagDescriptor.h>
679 sp<VendorTagDescriptor> vTags;
702 sp<VendorTagDescriptor> vTags = VendorTagDescriptor::getGlobalVendorTagDescriptor();
825 sp<VendorTagDescriptor> vTags =
826 VendorTagDescriptor::getGlobalVendorTagDescriptor();
864 sp<VendorTagDescriptor> desc = new VendorTagDescriptor();
869 VendorTagDescriptor::clearGlobalVendorTagDescriptor();
872 VendorTagDescriptor::clearGlobalVendorTagDescriptor()
    [all...]
  /frameworks/av/services/camera/libcameraservice/utils/
TagMonitor.cpp 25 #include <camera/VendorTagDescriptor.h>
60 sp<VendorTagDescriptor> vTags =
61 VendorTagDescriptor::getGlobalVendorTagDescriptor();
  /hardware/interfaces/camera/provider/2.4/default/
CameraProvider.h 28 #include "VendorTagDescriptor.h"
43 using ::android::hardware::camera::common::V1_0::helper::VendorTagDescriptor;
CameraProvider.cpp 288 VendorTagDescriptor::clearGlobalVendorTagDescriptor();
400 sp<VendorTagDescriptor> desc;
402 if ((res = VendorTagDescriptor::createDescriptorFromOps(&vOps, /*out*/desc))
411 VendorTagDescriptor::setAsGlobalVendorTagDescriptor(desc);
  /frameworks/av/services/camera/libcameraservice/common/
CameraProviderManager.h 33 #include <camera/VendorTagDescriptor.h>
39 * input. Not part of VendorTagDescriptor class because that class is used
42 class HidlVendorTagDescriptor : public VendorTagDescriptor {
45 * Create a VendorTagDescriptor object from the HIDL VendorTagSection
53 sp<VendorTagDescriptor>& descriptor);
CameraProviderManager.cpp 261 sp<VendorTagDescriptor> desc;
    [all...]
  /frameworks/av/services/camera/libcameraservice/
CameraService.h 35 #include <camera/VendorTagDescriptor.h>
116 hardware::camera2::params::VendorTagDescriptor* desc);
    [all...]
CameraService.cpp 212 VendorTagDescriptor::clearGlobalVendorTagDescriptor();
514 hardware::camera2::params::VendorTagDescriptor* desc) {
520 sp<VendorTagDescriptor> globalDescriptor = VendorTagDescriptor::getGlobalVendorTagDescriptor();
    [all...]

Completed in 639 milliseconds