OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tag_section
(Results
1 - 3
of
3
) sorted by null
/system/media/camera/tests/
camera_metadata_tests_fake_vendor.h
133
int
tag_section
= (tag >> 16) - VENDOR_SECTION;
local
134
if (
tag_section
< 0 ||
135
tag_section
>= FAKEVENDOR_SECTION_COUNT) return NULL;
137
return fakevendor_section_names[
tag_section
];
143
int
tag_section
= (tag >> 16) - VENDOR_SECTION;
local
144
if (
tag_section
< 0
145
||
tag_section
>= FAKEVENDOR_SECTION_COUNT
146
|| tag >= fakevendor_section_bounds[
tag_section
][1]) return NULL;
148
return fakevendor_tag_info[
tag_section
][tag_index].tag_name;
154
int
tag_section
= (tag >> 16) - VENDOR_SECTION
local
[
all
...]
/system/media/camera/src/
camera_metadata.c
450
uint32_t
tag_section
= entry.tag >> 16;
local
452
if (tag_type != (int)entry.type &&
tag_section
< VENDOR_SECTION) {
823
uint32_t
tag_section
= tag >> 16;
local
824
if (
tag_section
>= VENDOR_SECTION && vendor_tag_ops != NULL) {
829
if (
tag_section
>= ANDROID_SECTION_COUNT) {
832
return camera_metadata_section_names[
tag_section
];
836
uint32_t
tag_section
= tag >> 16;
local
837
if (
tag_section
>= VENDOR_SECTION && vendor_tag_ops != NULL) {
842
if (
tag_section
>= ANDROID_SECTION_COUNT ||
843
tag >= camera_metadata_section_bounds[
tag_section
][1] )
851
uint32_t
tag_section
= tag >> 16;
local
909
const char *tag_name, *
tag_section
;
local
[
all
...]
/frameworks/av/camera/ndk/impl/
ACameraMetadata.cpp
152
uint32_t
tag_section
= tag >> 16;
local
153
if (
tag_section
>= VENDOR_SECTION) {
Completed in 879 milliseconds