Searched refs:tag_section (Results 1 - 2 of 2) sorted by relevance

/system/media/camera/tests/
H A Dcamera_metadata_tests_fake_vendor.h123 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 local
[all...]
/system/media/camera/src/
H A Dcamera_metadata.c564 uint32_t tag_section = tag >> 16; local
565 if (tag_section >= VENDOR_SECTION && vendor_tag_ops != NULL) {
570 if (tag_section >= ANDROID_SECTION_COUNT) {
573 return camera_metadata_section_names[tag_section];
577 uint32_t tag_section = tag >> 16; local
578 if (tag_section >= VENDOR_SECTION && vendor_tag_ops != NULL) {
583 if (tag_section >= ANDROID_SECTION_COUNT ||
584 tag >= camera_metadata_section_bounds[tag_section][1] ) {
588 return tag_info[tag_section][tag_index].tag_name;
592 uint32_t tag_section local
641 const char *tag_name, *tag_section; local
[all...]

Completed in 207 milliseconds