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

  /system/media/camera/tests/
camera_metadata_tests_fake_vendor.h 127 int tag_section = (tag >> 16) - VENDOR_SECTION; local
128 if (tag_section < 0 ||
129 tag_section >= FAKEVENDOR_SECTION_COUNT) return NULL;
131 return fakevendor_section_names[tag_section];
137 int tag_section = (tag >> 16) - VENDOR_SECTION; local
138 if (tag_section < 0
139 || tag_section >= FAKEVENDOR_SECTION_COUNT
140 || tag >= fakevendor_section_bounds[tag_section][1]) return NULL;
142 return fakevendor_tag_info[tag_section][tag_index].tag_name;
148 int tag_section = (tag >> 16) - VENDOR_SECTION local
    [all...]
  /system/media/camera/src/
camera_metadata.c 395 uint32_t tag_section = entry.tag >> 16; local
397 if (tag_type != (int)entry.type && tag_section < VENDOR_SECTION) {
767 uint32_t tag_section = tag >> 16; local
768 if (tag_section >= VENDOR_SECTION && vendor_tag_ops != NULL) {
773 if (tag_section >= ANDROID_SECTION_COUNT) {
776 return camera_metadata_section_names[tag_section];
780 uint32_t tag_section = tag >> 16; local
781 if (tag_section >= VENDOR_SECTION && vendor_tag_ops != NULL) {
786 if (tag_section >= ANDROID_SECTION_COUNT ||
787 tag >= camera_metadata_section_bounds[tag_section][1] )
795 uint32_t tag_section = tag >> 16; local
845 const char *tag_name, *tag_section; local
    [all...]

Completed in 53 milliseconds