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

  /frameworks/av/camera/tests/
VendorTagDescriptorTests.cpp 56 static int default_get_tag_count(const vendor_tag_ops_t* vOps) {
60 static void default_get_all_tags(const vendor_tag_ops_t* vOps, uint32_t* tagArray) {
64 static const char* default_get_section_name(const vendor_tag_ops_t* vOps, uint32_t tag) {
68 static const char* default_get_tag_name(const vendor_tag_ops_t* vOps, uint32_t tag) {
72 static int default_get_tag_type(const vendor_tag_ops_t* vOps, uint32_t tag) {
79 static void FillWithDefaults(vendor_tag_ops_t* vOps) {
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->get_section_name = default_get_section_name
    [all...]
  /frameworks/av/camera/
VendorTagDescriptor.cpp 58 status_t VendorTagDescriptor::createDescriptorFromOps(const vendor_tag_ops_t* vOps,
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, tag)
    [all...]
  /frameworks/av/include/camera/
VendorTagDescriptor.h 106 static status_t createDescriptorFromOps(const vendor_tag_ops_t* vOps,
  /frameworks/av/services/camera/libcameraservice/
CameraService.cpp 433 vendor_tag_ops_t vOps = vendor_tag_ops_t();
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))
    [all...]

Completed in 58 milliseconds