Searched refs:vOps (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/camera/tests/
H A DVendorTagDescriptorTests.cpp56 static int default_get_tag_count(const vendor_tag_ops_t* vOps) { argument
60 static void default_get_all_tags(const vendor_tag_ops_t* vOps, uint32_t* tagArray) { argument
64 static const char* default_get_section_name(const vendor_tag_ops_t* vOps, uint32_t tag) { argument
68 static const char* default_get_tag_name(const vendor_tag_ops_t* vOps, uint32_t tag) { argument
72 static int default_get_tag_type(const vendor_tag_ops_t* vOps, uint32_t tag) { argument
79 static void FillWithDefaults(vendor_tag_ops_t* vOps) { argument
80 ASSERT_NOT_NULL(vOps);
81 vOps->get_tag_count = default_get_tag_count;
82 vOps->get_all_tags = default_get_all_tags;
83 vOps
94 const vendor_tag_ops_t *vOps = &fakevendor_ops; local
130 const vendor_tag_ops_t *vOps = &fakevendor_ops; local
173 vendor_tag_ops_t vOps; local
[all...]
/frameworks/av/camera/
H A DVendorTagDescriptor.cpp58 status_t VendorTagDescriptor::createDescriptorFromOps(const vendor_tag_ops_t* vOps, argument
61 if (vOps == NULL) {
66 int tagCount = vOps->get_tag_count(vOps);
76 vOps->get_all_tags(vOps, /*out*/tagArray.editArray());
90 const char *tagName = vOps->get_tag_name(vOps, tag);
96 const char *sectionName = vOps->get_section_name(vOps, ta
[all...]
/frameworks/av/include/camera/
H A DVendorTagDescriptor.h106 static status_t createDescriptorFromOps(const vendor_tag_ops_t* vOps,
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp433 vendor_tag_ops_t vOps = vendor_tag_ops_t(); local
442 mModule->get_vendor_tag_ops(&vOps);
446 if (vOps.get_tag_count == NULL || vOps.get_all_tags == NULL ||
447 vOps.get_section_name == NULL || vOps.get_tag_name == NULL ||
448 vOps.get_tag_type == NULL) {
457 if ((res = VendorTagDescriptor::createDescriptorFromOps(&vOps, /*out*/desc))

Completed in 5988 milliseconds