Searched defs:tagArray (Results 1 - 2 of 2) 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.cpp38 static void vendor_tag_descriptor_get_all_tags(const vendor_tag_ops_t* v, uint32_t* tagArray);
216 void VendorTagDescriptor::getTagArray(uint32_t* tagArray) const {
219 tagArray[i] = mTagToNameMap.keyAt(i);
355 Vector<uint32_t> tagArray; local
356 LOG_ALWAYS_FATAL_IF(tagArray.resize(tagCount) != tagCount,
359 vOps->get_all_tags(vOps, /*out*/tagArray.editArray());
368 uint32_t tag = tagArray[i];
401 uint32_t tag = tagArray[i];
465 void vendor_tag_descriptor_get_all_tags(const vendor_tag_ops_t* /*v*/, uint32_t* tagArray) {
471 sGlobalVendorTagDescriptor->getTagArray(tagArray);
[all...]

Completed in 3770 milliseconds