Searched refs:tags (Results 1 - 12 of 12) sorted by path

/system/core/adb/
H A Dadb.c86 /* read a comma/space/colum/semi-column separated list of tags
99 } tags[] = { local
129 for (tagn = 0; tags[tagn].tag != NULL; tagn++)
131 int taglen = strlen(tags[tagn].tag);
133 if (len == taglen && !memcmp(tags[tagn].tag, p, len) )
135 int flag = tags[tagn].flag;
/system/core/include/cutils/
H A Dtrace.h39 * using one of the tags defined below. It must be defined to one of the
49 * ATRACE_TAG_HAL should be bitwise ORed with the relevant tags for tracing
84 #error ATRACE_TAG must be defined to be one of the tags defined in cutils/trace.h
96 * Opens the trace file for writing and reads the property for initial tags.
97 * The atrace.tags.enableflags property sets the tags to trace.
105 * debug.atrace.tags.enableflags. Can be used as a sysprop change callback.
157 * Get the mask of all tags currently enabled.
/system/core/include/system/
H A Daudio.h158 char tags[AUDIO_ATTRIBUTES_TAGS_MAX_SIZE]; /* UTF8 */ member in struct:__anon71
/system/core/libcutils/
H A Dtrace.c118 // Read the sysprop and return the value tags should be set to
123 uint64_t tags; local
125 property_get("debug.atrace.tags.enableflags", value, "0");
127 tags = strtoull(value, &endptr, 0);
131 } else if (errno == ERANGE || tags == ULLONG_MAX) {
139 tags |= ATRACE_TAG_APP;
141 tags &= ~ATRACE_TAG_APP;
144 return (tags | ATRACE_TAG_ALWAYS) & ATRACE_TAG_VALID_MASK;
147 // Update tags if tracing is ready. Useful as a sysprop change callback.
150 uint64_t tags; local
[all...]
/system/core/liblog/
H A Dfake_log_device.c83 /* tags and priorities */
178 * This can be used to reveal or conceal logs with specific tags.
200 const char* tags = getenv("ANDROID_LOG_TAGS"); local
201 TRACE("Found ANDROID_LOG_TAGS='%s'\n", tags);
202 if (tags != NULL) {
205 while (*tags != '\0') {
209 while (isspace(*tags))
210 tags++;
213 while (*tags != '\0' && !isspace(*tags)
[all...]
/system/extras/procrank/
H A Dprocrank.c71 static const char* const tags[] = { local
94 while (tags[i]) {
95 if (strncmp(p, tags[i], tagsLen[i]) == 0) {
/system/media/camera/docs/
H A Dcamera_metadata_tags.mako60 * Hierarchy positions in enum space. All vendor extension tags must be
71 * Main enum for defining camera metadata tags. New entries must always go
H A Dhtml.mako75 /* Entry tags flair */
323 % if next(prop.tags, None):
325 % for tag in prop.tags:
371 <div class="tags" id="tag_index">
374 % for tag in metadata.tags:
H A Dmetadata_model.py198 tags: A sequence of all Tag instances available in the graph.
229 def tags(self): member in class:Metadata
259 tag_ids = [tg.name for tg in self.tags if tg.name == tag]
377 tag_dict = self._dictionary_by_name(self.tags)
577 if self.tags is not None:
578 for i in self.tags:
1051 tags: A sequence of Tag nodes associated with this Entry.
1059 parent and tags edges are invalid until after Metadata#construct_graph
1197 def tags(self): member in class:Entry
1451 'hal_details', 'tags', 'kin
[all...]
H A Dmetadata_parser_xml.py122 tags = self.soup.tags
123 if tags is not None:
124 for tag in tags.find_all('tag'):
H A Dmetadata_template.mako22 <tags>
23 % for tag in metadata.tags:
30 </tags>
82 % for tag in prop.tags:
175 % for tag in prop.tags:
/system/media/camera/tests/
H A Dcamera_metadata_tests.cpp1043 std::vector<uint32_t> tags; local
1044 tags.push_back(ANDROID_COLOR_CORRECTION_TRANSFORM);
1045 tags.push_back(ANDROID_LENS_FOCUS_DISTANCE);
1046 tags.push_back(ANDROID_SENSOR_EXPOSURE_TIME);
1047 tags.push_back(ANDROID_SENSOR_SENSITIVITY);
1048 std::sort(tags.begin(), tags.end());
1051 std::find(tags.begin(), tags.end(), ANDROID_LENS_FOCUS_DISTANCE)
1052 - tags
[all...]

Completed in 172 milliseconds