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 123 int tag_section = (tag >> 16) - VENDOR_SECTION; local
124 if (tag_section < 0 ||
125 tag_section >= FAKEVENDOR_SECTION_COUNT) return NULL;
127 return fakevendor_section_names[tag_section];
133 int tag_section = (tag >> 16) - VENDOR_SECTION; local
134 if (tag_section < 0
135 || tag_section >= FAKEVENDOR_SECTION_COUNT
136 || tag >= fakevendor_section_bounds[tag_section][1]) return NULL;
138 return fakevendor_tag_info[tag_section][tag_index].tag_name;
144 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) {
765 uint32_t tag_section = tag >> 16; local
766 if (tag_section >= VENDOR_SECTION && vendor_tag_ops != NULL) {
771 if (tag_section >= ANDROID_SECTION_COUNT) {
774 return camera_metadata_section_names[tag_section];
778 uint32_t tag_section = tag >> 16; local
779 if (tag_section >= VENDOR_SECTION && vendor_tag_ops != NULL) {
784 if (tag_section >= ANDROID_SECTION_COUNT ||
785 tag >= camera_metadata_section_bounds[tag_section][1] )
793 uint32_t tag_section = tag >> 16; local
843 const char *tag_name, *tag_section; local
    [all...]

Completed in 114 milliseconds