Home
last modified time | relevance | path

Searched refs:tag_name (Results 1 – 25 of 28) sorted by relevance

12

/aosp12/hardware/google/camera/common/hal/common/
H A Dvendor_tag_defs.h82 .tag_name = "DefaultPhysicalCamId",
95 .tag_name = "3a.hybrid_ae_enable",
121 .tag_name = "SensorModeFullFov",
134 .tag_name = "hdrplus.PayloadFrames",
148 .tag_name = "ProcessingMode",
157 .tag_name = "thermal_throttling",
168 .tag_name = "OutputIntent",
187 .tag_name = "NonWarpedYuvStreamId",
197 .tag_name = "NonWarpedCropRegion",
206 .tag_name = "hdr.UsageMode",
[all …]
H A Dhal_types.h81 std::string tag_name; member
/aosp12/hardware/google/camera/common/hal/tests/
H A Dvendor_tag_tests.cc98 .tag_name = "magic", in TEST()
101 .tag_name = "wand", in TEST()
105 .tag_name = "aec", in TEST()
108 .tag_name = "awb", in TEST()
119 .tag_name = "af", in TEST()
231 .tag_name = "aec", in TEST()
234 .tag_name = "awb", in TEST()
244 .tag_name = "af", in TEST()
269 .tag_name = "aec", in TEST()
272 .tag_name = "awb", in TEST()
[all …]
H A Dcamera_provider_tests.cc112 .tag_name = "tag0", in TEST_F()
117 .tag_name = "tag1", in TEST_F()
128 .tag_name = "tag2", in TEST_F()
133 .tag_name = "tag3", in TEST_F()
138 .tag_name = "tag4", in TEST_F()
171 EXPECT_EQ(returned_tag.tag_name, mock_tag.tag_name); in TEST_F()
/aosp12/hardware/qcom/audio/hal/
H A Dplatform_info.c898 if (strcmp(tag_name, "acdb_ids") == 0) { in start_tag()
902 } else if (strcmp(tag_name, "pcm_ids") == 0) { in start_tag()
920 } else if (strcmp(tag_name, "device") == 0) { in start_tag()
930 } else if (strcmp(tag_name, "usecase") == 0) { in start_tag()
938 } else if (strcmp(tag_name, "param") == 0) { in start_tag()
954 } else if (!strcmp(tag_name, "app")) { in start_tag()
1030 if(strcmp(tag_name, "config_params") == 0) { in start_tag()
1032 } else if (strcmp(tag_name, "param") == 0) { in start_tag()
1048 if (strcmp(tag_name, "acdb_ids") == 0) { in end_tag()
1056 } else if (strcmp(tag_name, "pcm_ids") == 0) { in end_tag()
[all …]
/aosp12/hardware/qcom/audio/hal/audio_extn/
H A Daudiozoom.c57 if (strcmp(tag_name, "topo") == 0) { in start_tag()
62 } else if (strcmp(tag_name, "module") == 0) { in start_tag()
67 } else if (strcmp(tag_name, "param") == 0) { in start_tag()
90 } else if (strcmp(tag_name, "app_type") == 0) { in start_tag()
95 } else if (strcmp(tag_name, "instance") == 0) { in start_tag()
101 ALOGE("%s: %s is not a supported tag", __func__, tag_name); in start_tag()
109 if (strcmp(tag_name, "topo") == 0) { in end_tag()
110 } else if (strcmp(tag_name, "module") == 0) { in end_tag()
111 } else if (strcmp(tag_name, "param") == 0) { in end_tag()
112 } else if (strcmp(tag_name, "app_type") == 0) { in end_tag()
[all …]
/aosp12/system/security/keystore2/src/
H A Dkey_parameter.rs279 $(Tag::$tag_name => $enum_name::$vname$((
343 $enum_name::$vname(_) => Tag::$tag_name,
350 [$vname:ident $tag_name:ident, $($in:tt)*]
353 $enum_name::$vname => Tag::$tag_name,
459 Tag::$tag_name => {
465 stringify!($tag_name),
545 tag: Tag::$tag_name,
558 tag: Tag::$tag_name,
583 tag: Tag::$tag_name,
596 tag: Tag::$tag_name,
[all …]
/aosp12/frameworks/base/tools/aapt2/tools/consumers/
H A Dduplicates.py98 def start_element(self, tag_name, attrs): argument
100 if self._depth == 2 and tag_name not in ["public", "java-symbol", "eat-comment", "skip"]:
108 if tag_name == "item":
111 resource_name = "{0}/{1}".format(tag_name, attrs["name"])
119 def end_element(self, tag_name): argument
124 self._parser.CurrentColumnNumber + 3 + len(tag_name))
H A Dpositional_arguments.py57 def start_element(self, tag_name, attrs): argument
59 if self._depth == 2 and tag_name == "string" and "translateable" not in attrs:
70 def end_element(self, tag_name): argument
/aosp12/hardware/google/camera/common/hal/utils/
H A Dvendor_tag_utils.cc56 std::string full_tag_name = section.section_name + "." + tag.tag_name; in CombineVendorTags()
143 .tag_name = tag.tag_name}; in AddTags()
145 vendor_tag_inverse_map_[TagString(section.section_name, tag.tag_name)] = in AddTags()
216 return it->second.tag_name.c_str(); in GetTagName()
247 const std::string tag_name, uint32_t* tag_id) { in GetTag() argument
254 const TagString section_tag{section_name, tag_name}; in GetTag()
H A Dvendor_tag_interface.h32 std::string tag_name; member
43 const std::string tag_name, uint32_t* tag_id);
H A Dhal_camera_metadata.cc579 const char *tag_name, *tag_section; in Dump() local
584 tag_name = get_local_camera_metadata_tag_name(entry.tag, metadata_); in Dump()
585 if (tag_name == nullptr) { in Dump()
586 tag_name = "unknownTag"; in Dump()
595 tag_name, entry.tag, type_name, entry.count); in Dump()
H A Dvendor_tag_utils.h82 status_t GetTag(const std::string section_name, const std::string tag_name,
/aosp12/build/soong/scripts/
H A Dmanifest.py26 def get_children_with_tag(parent, tag_name): argument
30 child.tagName == tag_name:
35 def find_child_with_attribute(element, tag_name, namespace_uri, argument
37 for child in get_children_with_tag(element, tag_name):
/aosp12/hardware/qcom/sm8150/display/gralloc/
H A Dgr_ion_alloc.cpp89 std::string tag_name{}; in AllocBuffer() local
91 tag_name = "libion alloc size: " + std::to_string(data->size); in AllocBuffer()
94 ATRACE_BEGIN(tag_name.c_str()); in AllocBuffer()
188 std::string tag_name{}; in AllocBuffer() local
190 tag_name = "ION_IOC_ALLOC size: " + std::to_string(data->size); in AllocBuffer()
193 ATRACE_BEGIN(tag_name.c_str()); in AllocBuffer()
/aosp12/hardware/qcom/sm7250/display/gralloc/
H A Dgr_ion_alloc.cpp85 std::string tag_name{}; in AllocBuffer() local
87 tag_name = "libion alloc size: " + std::to_string(data->size); in AllocBuffer()
90 ATRACE_BEGIN(tag_name.c_str()); in AllocBuffer()
/aosp12/hardware/qcom/display/msm8998/libgralloc1/
H A Dgr_ion_alloc.cpp87 std::string tag_name{}; in AllocBuffer() local
89 tag_name = "ION_IOC_ALLOC size: " + std::to_string(data->size); in AllocBuffer()
92 ATRACE_BEGIN(tag_name.c_str()); in AllocBuffer()
/aosp12/hardware/qcom/sdm845/display/gralloc/
H A Dgr_ion_alloc.cpp82 std::string tag_name{}; in AllocBuffer() local
84 tag_name = "ION_IOC_ALLOC size: " + std::to_string(data->size); in AllocBuffer()
87 ATRACE_BEGIN(tag_name.c_str()); in AllocBuffer()
/aosp12/system/media/camera/tests/
H A Dcamera_metadata_tests_fake_vendor.h64 const char *tag_name; member
148 return fakevendor_tag_info[tag_section][tag_index].tag_name; in get_fakevendor_tag_name()
/aosp12/system/media/camera/src/
H A Dcamera_metadata.c185 const char *tag_name; member
970 return tag_info[tag_section][tag_index].tag_name; in get_local_camera_metadata_tag_name_vendor_id()
1109 const char *tag_name, *tag_section; in dump_indented_camera_metadata() local
1114 tag_name = get_local_camera_metadata_tag_name(entry->tag, metadata); in dump_indented_camera_metadata()
1115 if (tag_name == NULL) { in dump_indented_camera_metadata()
1116 tag_name = "unknownTag"; in dump_indented_camera_metadata()
1127 tag_name, in dump_indented_camera_metadata()
/aosp12/hardware/qcom/camera/msm8998/QCamera2/HAL3/
H A DQCamera3VendorTags.cpp80 const char *tag_name; member
793 ret = qcamera3_tag_info[section_index][tag_index].tag_name; in get_tag_name()
796 ret = tango_tag_info[section - TANGO_SECTIONS_START][tag_index].tag_name; in get_tag_name()
/aosp12/system/media/audio_route/
H A Daudio_route.c468 static void start_tag(void *data, const XML_Char *tag_name, in start_tag() argument
496 if (strcmp(tag_name, "path") == 0) { in start_tag()
515 } else if (strcmp(tag_name, "ctl") == 0) { in start_tag()
640 static void end_tag(void *data, const XML_Char *tag_name) in end_tag() argument
643 (void)tag_name; in end_tag()
/aosp12/frameworks/base/core/proto/android/util/
H A Devent_log_tags.proto36 optional string tag_name = 2; field
/aosp12/frameworks/base/tools/aapt2/
H A DResourceParser.cpp970 const char* tag_name, IDiagnostics* diag, Func&& func) { in ParseGroupImpl() argument
973 << "ignoring configuration '" << out_resource->config << "' for <" << tag_name in ParseGroupImpl()
980 << "<" << tag_name << "> must have a 'type' attribute"); in ParseGroupImpl()
987 << "invalid resource type '" << maybe_type.value() << "' in <" << tag_name << ">"); in ParseGroupImpl()
994 << "<" << tag_name << "> must have a 'first-id' attribute"); in ParseGroupImpl()
1001 << "invalid resource ID '" << maybe_id_str.value() << "' in <" << tag_name << ">"); in ParseGroupImpl()
1030 diag->Error(DiagMessage(item_source) << "'id' is ignored within <" << tag_name << ">"); in ParseGroupImpl()
1036 diag->Error(DiagMessage(item_source) << "'type' is ignored within <" << tag_name << ">"); in ParseGroupImpl()
/aosp12/hardware/google/camera/devices/EmulatedCamera/hwl/
H A DEmulatedCameraProviderHWLImpl.cpp123 const char* tag_name = get_camera_metadata_tag_name(candidate_tag); in GetTagFromName() local
125 if (strcmp(name_tag_name, tag_name) == 0) { in GetTagFromName()
126 ALOGV("%s: Found matched tag '%s' (%d)", __FUNCTION__, tag_name, in GetTagFromName()

12