Searched defs:tags (Results 1 - 7 of 7) sorted by relevance

/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/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/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...]
/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/media/camera/docs/
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...]
/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/system/
H A Daudio.h158 char tags[AUDIO_ATTRIBUTES_TAGS_MAX_SIZE]; /* UTF8 */ member in struct:__anon71

Completed in 162 milliseconds