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

/frameworks/av/camera/tests/
H A DVendorTagDescriptorTests.cpp104 int tagCount = vDesc->getTagCount(); local
105 EXPECT_EQ(tagCount, vOps->get_tag_count(vOps));
107 uint32_t descTagArray[tagCount];
108 uint32_t opsTagArray[tagCount];
118 for (int i = 0; i < tagCount; ++i) {
148 int tagCount = vDescOriginal->getTagCount(); local
149 ASSERT_EQ(tagCount, vDescParceled->getTagCount());
151 uint32_t descTagArray[tagCount];
152 uint32_t desc2TagArray[tagCount];
162 for (int i = 0; i < tagCount;
[all...]
/frameworks/av/camera/
H A DVendorTagDescriptor.cpp106 int32_t tagCount = 0; local
107 if ((res = parcel->readInt32(&tagCount)) != OK) {
112 if (tagCount < 0 || tagCount > INT32_MAX) {
113 ALOGE("%s: tag count %d from vendor ops is invalid.", __FUNCTION__, tagCount);
117 mTagCount = tagCount;
123 for (int32_t i = 0; i < tagCount; ++i) {
167 if (tagCount > 0) {
190 LOG_ALWAYS_FATAL_IF(static_cast<size_t>(tagCount) != allTags.size(),
191 "tagCount mus
349 int tagCount = vOps->get_tag_count(vOps); local
[all...]

Completed in 55 milliseconds