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

  /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...]
  /frameworks/av/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...]
  /frameworks/av/camera/
VendorTagDescriptor.cpp 17 #define LOG_TAG "VendorTagDescriptor"
28 #include "camera/VendorTagDescriptor.h"
47 static sp<VendorTagDescriptor> sGlobalVendorTagDescriptor;
53 VendorTagDescriptor::~VendorTagDescriptor() {
60 VendorTagDescriptor::VendorTagDescriptor() :
65 VendorTagDescriptor::VendorTagDescriptor(const VendorTagDescriptor& src)
    [all...]

Completed in 66 milliseconds