Searched defs:tagCount (Results 1 - 2 of 2) sorted by relevance

/hardware/interfaces/camera/common/1.0/default/
H A DVendorTagDescriptor.cpp208 int tagCount = vOps->get_tag_count(vOps); local
209 if (tagCount < 0 || tagCount > INT32_MAX) {
210 ALOGE("%s: tag count %d from vendor ops is invalid.", __FUNCTION__, tagCount);
215 LOG_ALWAYS_FATAL_IF(tagArray.resize(tagCount) != tagCount,
216 "%s: too many (%u) vendor tags defined.", __FUNCTION__, tagCount);
221 desc->mTagCount = tagCount;
226 for (size_t i = 0; i < static_cast<size_t>(tagCount); ++i) {
259 for (size_t i = 0; i < static_cast<size_t>(tagCount);
[all...]
/hardware/interfaces/camera/provider/2.4/default/
H A DCameraProvider.cpp415 int tagCount = desc->getTagCount(); local
416 std::vector<uint32_t> tags(tagCount);
418 for (int i = 0; i < tagCount; i++) {

Completed in 27 milliseconds