Searched defs:tagArray (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/camera/tests/
H A DVendorTagDescriptorTests.cpp41 static bool ContainsTag(uint32_t* tagArray, size_t size, uint32_t tag) { argument
43 if (tag == tagArray[i]) return true;
192 uint32_t* tagArray = reinterpret_cast<uint32_t*>(BAD_TAG_ARRAY); local
193 uint32_t* testArray = tagArray;
194 vDesc->getTagArray(tagArray);
195 EXPECT_EQ(testArray, tagArray);
/frameworks/av/camera/
H A DVendorTagDescriptor.cpp39 static void vendor_tag_descriptor_get_all_tags(const vendor_tag_ops_t* v, uint32_t* tagArray);
45 static void vendor_tag_descriptor_cache_get_all_tags(uint32_t* tagArray,
228 void VendorTagDescriptor::getTagArray(uint32_t* tagArray) const {
231 tagArray[i] = mTagToNameMap.keyAt(i);
422 void VendorTagDescriptorCache::getTagArray(uint32_t* tagArray, argument
426 desc->second->getTagArray(tagArray);
522 Vector<uint32_t> tagArray; local
523 LOG_ALWAYS_FATAL_IF(tagArray.resize(tagCount) != tagCount,
526 vOps->get_all_tags(vOps, /*out*/tagArray.editArray());
535 uint32_t tag = tagArray[
[all...]
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraProviderManager.cpp1274 Vector<uint32_t> tagArray; local
1275 LOG_ALWAYS_FATAL_IF(tagArray.resize(tagCount) != tagCount,
1303 tagArray.editItemAt(idx++) = section.tags[j].tagId;
1324 for (size_t i = 0; i < tagArray.size(); ++i) {
1325 uint32_t tag = tagArray[i];

Completed in 84 milliseconds