Searched refs:tag (Results 1 - 25 of 41) sorted by last modified time

12

/system/media/camera/docs/
H A DCameraMetadataKeys.mako46 % if any(tag.name == 'FULL' for tag in entry.tags):
H A Dcamera_metadata_tag_info.mako22 * maintaining the tag info.
64 int camera_metadata_enum_snprint(uint32_t tag,
71 switch(tag) {
H A Dcamera_metadata_tags.mako61 * defined with tag >= VENDOR_SECTION_START
72 * before the section _END tag to preserve existing enumeration values. In
73 * addition, the name and type of the tag needs to be added to
H A Dhtml.mako73 /* TODO: generate abbr element for each tag link? */
216 % for tag in prop.tags:
217 <tag id="${tag.id}" />
298 % for tag in prop.tags:
299 <li><a href="#tag_${tag.id}">${tag.id}</a></li>
324 % for tag in metadata.tags:
325 <li id="tag_${tag.id}">${tag
[all...]
H A Dmetadata_model.py34 Tag: A node corresponding to a top level <tag> element.
244 def insert_tag(self, tag, description=""):
246 Insert a tag into the metadata.
249 tag: A string identifier for a tag.
250 description: A string description for a tag.
256 Subsequent calls to insert_tag with the same tag are safe (they will
259 tag_ids = [tg.name for tg in self.tags if tg.name == tag]
261 self._tags.append(Tag(tag, self, description))
381 tag
[all...]
H A Dmetadata_parser_xml.py107 for tag in tags.find_all('tag'):
108 self.metadata.insert_tag(tag['id'], tag.string)
236 for tag in entry.find_all('tag'):
237 tag_ids.append(tag['id'])
H A Dmetadata_template.mako23 % for tag in metadata.tags:
24 % if tag.description and tag.description.strip():
25 <tag id="${tag.id}">${tag.description | x}</tag>
27 <tag id="${tag.id}"><!-- TODO: fill the tag descriptio
[all...]
H A Dmetadata_validate.py94 def find_all_child_tags(element, tag):
97 with a name of tag. This is useful to filter out the NavigableString out
102 tag: A string representing the name of the tag
119 matching_tags = [i for i in element.children if isinstance(i, Tag) and i.name == tag]
122 def find_child_tag(element, tag):
128 tag: A String representing the name of the tag
144 matching_tags = find_all_child_tags(element, tag)
158 a BeautifulSoup tag, o
[all...]
/system/media/camera/include/system/
H A Dcamera_metadata.h82 uint32_t tag; member in struct:camera_metadata_entry
101 uint32_t tag; member in struct:camera_metadata_ro_entry
133 * an integer tag to identify its meaning, 'type' and 'count' field, and the
141 * entries with the same tag are allowed. The packet will not dynamically resize
315 * left to add the entry, or if the tag is unknown. data_count is the number of
316 * entries in the data array of the tag's type, not a count of
324 uint32_t tag,
349 * Find an entry with given tag value. If not found, returns -ENOENT. Otherwise,
352 * If multiple entries with the same tag exist, does not have any guarantees on
358 uint32_t tag,
[all...]
/system/media/camera/src/
H A Dcamera_metadata.c50 uint32_t tag; member in struct:camera_metadata_buffer_entry
395 uint32_t tag_section = entry.tag >> 16;
396 int tag_type = get_camera_metadata_tag_type(entry.tag);
398 ALOGE("%s: Entry index %u had tag type %d, but the type was %d",
414 " expected align %d, (tag name %s, data size %u)",
416 get_camera_metadata_tag_name(entry.tag) ?: "unknown",
434 "(%u), tag name: %s", __FUNCTION__, i, entry.data.offset,
435 get_camera_metadata_tag_name(entry.tag) ?: "unknown");
504 uint32_t tag,
521 entry->tag
503 add_camera_metadata_entry_raw(camera_metadata_t *dst, uint32_t tag, uint8_t type, const void *data, size_t data_count) argument
539 add_camera_metadata_entry(camera_metadata_t *dst, uint32_t tag, const void *data, size_t data_count) argument
598 find_camera_metadata_entry(camera_metadata_t *src, uint32_t tag, camera_metadata_entry_t *entry) argument
631 find_camera_metadata_ro_entry(const camera_metadata_t *src, uint32_t tag, camera_metadata_ro_entry_t *entry) argument
766 get_camera_metadata_section_name(uint32_t tag) argument
779 get_camera_metadata_tag_name(uint32_t tag) argument
794 get_camera_metadata_tag_type(uint32_t tag) argument
893 print_data(int fd, const uint8_t *data_ptr, uint32_t tag, int type, int count, int indentation) argument
[all...]
H A Dcamera_metadata_tag_info.c21 * maintaining the tag info.
581 int camera_metadata_enum_snprint(uint32_t tag, argument
588 switch(tag) {
/system/media/camera/tests/
H A Dcamera_metadata_tests.cpp262 EXPECT_EQ(ANDROID_SENSOR_EXPOSURE_TIME, entry.tag);
271 EXPECT_EQ(ANDROID_SENSOR_SENSITIVITY, entry.tag);
280 EXPECT_EQ(ANDROID_LENS_FOCUS_DISTANCE, entry.tag);
289 EXPECT_EQ(ANDROID_COLOR_CORRECTION_TRANSFORM, entry.tag);
357 EXPECT_EQ(ANDROID_SENSOR_EXPOSURE_TIME, entry.tag);
362 entry.tag = 1234;
369 EXPECT_EQ((uint32_t)1234, entry.tag);
438 EXPECT_EQ(e1.tag, e2.tag);
498 EXPECT_EQ(e1.tag, e
[all...]
H A Dcamera_metadata_tests_fake_vendor.h108 uint32_t tag);
110 uint32_t tag);
112 uint32_t tag);
125 uint32_t tag) {
127 int tag_section = (tag >> 16) - VENDOR_SECTION;
135 uint32_t tag) {
137 int tag_section = (tag >> 16) - VENDOR_SECTION;
140 || tag >= fakevendor_section_bounds[tag_section][1]) return NULL;
141 int tag_index = tag & 0xFFFF;
146 uint32_t tag) {
124 get_fakevendor_section_name(const vendor_tag_query_ops_t *v, uint32_t tag) argument
134 get_fakevendor_tag_name(const vendor_tag_query_ops_t *v, uint32_t tag) argument
145 get_fakevendor_tag_type(const vendor_tag_query_ops_t *v, uint32_t tag) argument
172 unsigned int start, end, tag; local
[all...]
/system/security/keystore/
H A Dtest-keystore62 diff $baseline_file $log_file || (log $tag FAILED && exit 1)
265 log $tag START
269 log $tag PASSED
/system/security/softkeymaster/
H A Dmodule.cpp57 dev->common.tag = HARDWARE_DEVICE_TAG;
87 tag: HARDWARE_MODULE_TAG,
/system/core/adb/
H A Dadb.c94 const char* tag; member in struct:__anon1
126 for (tagn = 0; tags[tagn].tag != NULL; tagn++)
128 int taglen = strlen(tags[tagn].tag);
130 if (len == taglen && !memcmp(tags[tagn].tag, p, len) )
231 char *tag; local
236 case A_SYNC: tag = "SYNC"; break;
237 case A_CNXN: tag = "CNXN" ; break;
238 case A_OPEN: tag = "OPEN"; break;
239 case A_OKAY: tag = "OKAY"; break;
240 case A_CLSE: tag
[all...]
H A Dadb.h419 #define print_packet(tag,p) do {} while (0)
/system/core/debuggerd/
H A Dtombstone.c553 * Msg format is: <priority:1><tag:N>\0<message:N>\0
563 char* tag = entry->msg + 1; local
564 char* msg = tag + strlen(tag) + 1;
585 prioChar, tag, msg);
591 prioChar, tag, msg);
/system/core/include/android/
H A Dlog.h43 * - a log tag
46 * The tag normally corresponds to the component that emits the log message,
94 int __android_log_write(int prio, const char *tag, const char *text);
99 int __android_log_print(int prio, const char *tag, const char *fmt, ...)
109 int __android_log_vprint(int prio, const char *tag,
116 void __android_log_assert(const char *cond, const char *tag,
/system/core/include/cutils/
H A Dklog.h32 #define KLOG_ERROR(tag,x...) klog_write(3, "<3>" tag ": " x)
33 #define KLOG_WARNING(tag,x...) klog_write(4, "<4>" tag ": " x)
34 #define KLOG_NOTICE(tag,x...) klog_write(5, "<5>" tag ": " x)
35 #define KLOG_INFO(tag,x...) klog_write(6, "<6>" tag ": " x)
36 #define KLOG_DEBUG(tag,x...) klog_write(7, "<7>" tag "
[all...]
H A Dqtaguid.h31 extern int qtaguid_tagSocket(int sockfd, int tag, uid_t uid);
46 * Delete all tag info that relates to the given tag an uid.
47 * If the tag is 0, then ALL info about the uid is freeded.
54 extern int qtaguid_deleteTagData(int tag, uid_t uid);
H A Dtrace.h38 * following ATRACE_TAG_* macros. The trace tag is used to filter tracing in
53 #define ATRACE_TAG_NEVER 0 // This tag is never enabled.
54 #define ATRACE_TAG_ALWAYS (1<<0) // This tag is always enabled.
86 * Note this message includes a tag, the pid, and the string given as the name.
165 * Test if a given tag is currently enabled.
166 * Returns nonzero if the tag is enabled, otherwise zero.
170 static inline uint64_t atrace_is_tag_enabled(uint64_t tag) argument
172 return atrace_get_enabled_tags() & tag;
180 static inline void atrace_begin(uint64_t tag, const char* name) argument
182 if (CC_UNLIKELY(atrace_is_tag_enabled(tag))) {
196 atrace_end(uint64_t tag) argument
213 atrace_async_begin(uint64_t tag, const char* name, int32_t cookie) argument
231 atrace_async_end(uint64_t tag, const char* name, int32_t cookie) argument
250 atrace_int(uint64_t tag, const char* name, int32_t value) argument
267 atrace_int64(uint64_t tag, const char* name, int64_t value) argument
[all...]
/system/core/include/log/
H A Devent_tag_map.h30 * Open the specified file as an event log tag map.
42 * Look up a tag by index. Returns the tag string, or NULL if not found.
44 const char* android_lookupEventTag(const EventTagMap* map, int tag);
H A Dlog.h63 * This is the local tag used for the following simplified
65 * before using the other macros to change the tag.
426 * The second argument may be NULL or "" to indicate the "global" tag.
429 #define ALOG(priority, tag, ...) \
430 LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__)
437 #define LOG_PRI(priority, tag, ...) \
438 android_printLog(priority, tag, __VA_ARGS__)
445 #define LOG_PRI_VA(priority, tag, fmt, args) \
446 android_vprintLog(priority, NULL, tag, fmt, args)
450 * Conditional given a desired logging priority and tag
[all...]
H A Dlogd.h41 int __android_log_bwrite(int32_t tag, const void *payload, size_t len);
42 int __android_log_btwrite(int32_t tag, char type, const void *payload,

Completed in 151 milliseconds

12