HomeSort by relevance Sort by last modified time
    Searched refs:tagArray (Results 1 - 7 of 7) sorted by null

  /frameworks/av/camera/tests/
VendorTagDescriptorTests.cpp 41 static bool ContainsTag(uint32_t* tagArray, size_t size, uint32_t tag) {
43 if (tag == tagArray[i]) return true;
193 uint32_t* tagArray = reinterpret_cast<uint32_t*>(BAD_TAG_ARRAY);
194 uint32_t* testArray = tagArray;
195 vDesc->getTagArray(tagArray);
196 EXPECT_EQ(testArray, tagArray);
  /frameworks/av/camera/include/camera/
VendorTagDescriptor.h 61 void getTagArray(uint32_t* tagArray) const;
198 void getTagArray(uint32_t* tagArray, metadata_vendor_id_t id) const;
  /frameworks/av/camera/
VendorTagDescriptor.cpp 39 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);
431 void VendorTagDescriptorCache::getTagArray(uint32_t* tagArray,
435 desc->second->getTagArray(tagArray);
531 Vector<uint32_t> tagArray;
532 LOG_ALWAYS_FATAL_IF(tagArray.resize(tagCount) != tagCount,
535 vOps->get_all_tags(vOps, /*out*/tagArray.editArray());
544 uint32_t tag = tagArray[i]
    [all...]
  /frameworks/av/camera/ndk/ndk_vendor/impl/
ACameraManager.cpp 81 Vector<uint32_t> tagArray;
82 LOG_ALWAYS_FATAL_IF(tagArray.resize(tagCount) != tagCount,
108 tagArray.editItemAt(idx++) = section.tags[j].tagId;
127 for (size_t i = 0; i < tagArray.size(); ++i) {
128 uint32_t tag = tagArray[i];
  /external/golang-protobuf/proto/
table_unmarshal.go 330 tagArray := strings.Split(tags, ",")
331 if len(tagArray) < 2 {
334 tag, err := strconv.Atoi(tagArray[1])
336 panic("protobuf tag field not an integer: " + tagArray[1])
340 for _, tag := range tagArray[3:] {
351 if tagArray[2] == "req" {
459 tagArray := strings.Split(tags, ",")
460 encoding := tagArray[0]
464 for _, tag := range tagArray[3:] {
    [all...]
  /external/syzkaller/vendor/github.com/golang/protobuf/proto/
table_unmarshal.go 329 tagArray := strings.Split(tags, ",")
330 if len(tagArray) < 2 {
333 tag, err := strconv.Atoi(tagArray[1])
335 panic("protobuf tag field not an integer: " + tagArray[1])
339 for _, tag := range tagArray[3:] {
350 if tagArray[2] == "req" {
456 tagArray := strings.Split(tags, ",")
457 encoding := tagArray[0]
461 for _, tag := range tagArray[3:] {
    [all...]
  /frameworks/av/services/camera/libcameraservice/common/
CameraProviderManager.cpp     [all...]

Completed in 350 milliseconds