Home
last modified time | relevance | path

Searched refs:getSectionName (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/camera/tests/
DVendorTagDescriptorTests.cpp123 EXPECT_STREQ(vDesc->getSectionName(tag), vOps->get_section_name(vOps, tag)); in TEST()
168 EXPECT_STREQ(vDescOriginal->getSectionName(tag), vDescParceled->getSectionName(tag)); in TEST()
196 EXPECT_EQ(VENDOR_SECTION_NAME_ERR, vDesc->getSectionName(BAD_TAG)); in TEST()
207 EXPECT_EQ(VENDOR_SECTION_NAME_ERR, vDesc->getSectionName(BAD_TAG)); in TEST()
/frameworks/av/camera/include/camera/
DVendorTagDescriptor.h64 const char* getSectionName(uint32_t tag) const;
196 const char* getSectionName(uint32_t tag, metadata_vendor_id_t id) const;
/frameworks/av/camera/
DVendorTagDescriptor.cpp235 const char* VendorTagDescriptor::getSectionName(uint32_t tag) const { in getSectionName() function in android::hardware::camera2::params::VendorTagDescriptor
432 const char* VendorTagDescriptorCache::getSectionName(uint32_t tag, in getSectionName() function in android::hardware::camera2::params::VendorTagDescriptorCache
437 ret = desc->second->getSectionName(tag); in getSectionName()
680 return sGlobalVendorTagDescriptor->getSectionName(tag); in vendor_tag_descriptor_get_section_name()
726 return sGlobalVendorTagDescriptorCache->getSectionName(tag, id); in vendor_tag_descriptor_cache_get_section_name()
/frameworks/base/core/jni/
Dandroid_hardware_camera2_CameraMetadata.cpp757 const char* section = vTags->getSectionName(id); in CameraMetadata_getAllVendorKeys()