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

  /system/core/liblog/
event_tag_map.c 46 EventTag* tagArray;
137 cmp = map->tagArray[mid].tagIndex - tag;
146 return map->tagArray[mid].tagStr;
196 map->tagArray = calloc(1, sizeof(EventTag) * map->numTags);
197 if (map->tagArray == NULL)
294 if (scanTagLine(&cp, &map->tagArray[tagNum], lineNum) != 0)
409 qsort(map->tagArray, map->numTags, sizeof(EventTag), compareEventTags);
412 if (map->tagArray[i].tagIndex == map->tagArray[i-1].tagIndex) {
415 map->tagArray[i].tagIndex, map->tagArray[i].tagStr
    [all...]
  /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;
60 static void default_get_all_tags(const vendor_tag_ops_t* vOps, uint32_t* tagArray) {
184 uint32_t* tagArray = reinterpret_cast<uint32_t*>(BAD_TAG_ARRAY);
185 uint32_t* testArray = tagArray;
186 vDesc->getTagArray(tagArray);
187 EXPECT_EQ(testArray, tagArray);
  /frameworks/av/include/camera/
VendorTagDescriptor.h 51 void getTagArray(uint32_t* tagArray) const;
  /frameworks/av/camera/
VendorTagDescriptor.cpp 38 static void vendor_tag_descriptor_get_all_tags(const vendor_tag_ops_t* v, uint32_t* tagArray);
72 Vector<uint32_t> tagArray;
73 LOG_ALWAYS_FATAL_IF(tagArray.resize(tagCount) != tagCount,
76 vOps->get_all_tags(vOps, /*out*/tagArray.editArray());
85 uint32_t tag = tagArray[i];
118 uint32_t tag = tagArray[i];
260 void VendorTagDescriptor::getTagArray(uint32_t* tagArray) const {
263 tagArray[i] = mTagToNameMap.keyAt(i);
423 void vendor_tag_descriptor_get_all_tags(const vendor_tag_ops_t* /*v*/, uint32_t* tagArray) {
429 sGlobalVendorTagDescriptor->getTagArray(tagArray);
    [all...]

Completed in 140 milliseconds