Home
last modified time | relevance | path

Searched refs:hal_sections (Results 1 – 3 of 3) sorted by relevance

/hardware/google/camera/common/hal/tests/
Dvendor_tag_tests.cc111 std::vector<VendorTagSection> hal_sections = { in TEST() local
123 status_t ret = vendor_tag_utils::CombineVendorTags(hwl_sections, hal_sections, in TEST()
128 ret = vendor_tag_utils::CombineVendorTags(hwl_sections, hal_sections, in TEST()
156 for (auto& section : hal_sections) { in TEST()
237 std::vector<VendorTagSection> hal_sections = { in TEST() local
248 status_t ret = vendor_tag_utils::CombineVendorTags(hwl_sections, hal_sections, in TEST()
275 std::vector<VendorTagSection> hal_sections = { in TEST() local
286 status_t ret = vendor_tag_utils::CombineVendorTags(hwl_sections, hal_sections, in TEST()
/hardware/google/camera/common/hal/hidl_service/
Dhidl_utils.cc98 const std::vector<google_camera_hal::VendorTagSection>& hal_sections, in ConvertToHidlVendorTagSections() argument
105 hidl_sections->resize(hal_sections.size()); in ConvertToHidlVendorTagSections()
106 for (uint32_t i = 0; i < hal_sections.size(); i++) { in ConvertToHidlVendorTagSections()
107 (*hidl_sections)[i].sectionName = hal_sections[i].section_name; in ConvertToHidlVendorTagSections()
108 (*hidl_sections)[i].tags.resize(hal_sections[i].tags.size()); in ConvertToHidlVendorTagSections()
110 for (uint32_t j = 0; j < hal_sections[i].tags.size(); j++) { in ConvertToHidlVendorTagSections()
111 (*hidl_sections)[i].tags[j].tagId = hal_sections[i].tags[j].tag_id; in ConvertToHidlVendorTagSections()
112 (*hidl_sections)[i].tags[j].tagName = hal_sections[i].tags[j].tag_name; in ConvertToHidlVendorTagSections()
114 ConvertToHidlVendorTagType(hal_sections[i].tags[j].tag_type, in ConvertToHidlVendorTagSections()
Dhidl_utils.h67 const std::vector<google_camera_hal::VendorTagSection>& hal_sections,