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

/system/core/libcutils/
H A Dtrace-dev.c113 // Read the sysprop and return the value tags should be set to
118 uint64_t tags; local
120 property_get("debug.atrace.tags.enableflags", value, "0");
122 tags = strtoull(value, &endptr, 0);
126 } else if (errno == ERANGE || tags == ULLONG_MAX) {
134 tags |= ATRACE_TAG_APP;
136 tags &= ~ATRACE_TAG_APP;
139 return (tags | ATRACE_TAG_ALWAYS) & ATRACE_TAG_VALID_MASK;
142 // Update tags if tracing is ready. Useful as a sysprop change callback.
145 uint64_t tags; local
[all...]
/system/core/logd/
H A DLogBuffer.h101 LogTags tags; member in class:LogBuffer
149 return tags.formatGetEventTag(uid, name, format);
152 return tags.formatEntry(tag, uid);
155 return tags.tagToName(tag);
/system/media/camera/tests/
H A Dcamera_metadata_tests.cpp1039 std::vector<uint32_t> tags; local
1040 tags.push_back(ANDROID_COLOR_CORRECTION_TRANSFORM);
1041 tags.push_back(ANDROID_LENS_FOCUS_DISTANCE);
1042 tags.push_back(ANDROID_SENSOR_EXPOSURE_TIME);
1043 tags.push_back(ANDROID_SENSOR_SENSITIVITY);
1044 std::sort(tags.begin(), tags.end());
1047 std::find(tags.begin(), tags.end(), ANDROID_LENS_FOCUS_DISTANCE)
1048 - tags
[all...]
/system/core/base/
H A Dlogging.cpp274 const char* tags = getenv("ANDROID_LOG_TAGS"); local
275 if (tags == nullptr) {
279 std::vector<std::string> specs = Split(tags, " ");
310 LOG(FATAL) << "unsupported '" << spec << "' in ANDROID_LOG_TAGS (" << tags local
/system/core/liblog/
H A Dfake_log_device.c80 /* tags and priorities */
172 * This can be used to reveal or conceal logs with specific tags.
195 const char* tags = getenv("ANDROID_LOG_TAGS"); local
196 TRACE("Found ANDROID_LOG_TAGS='%s'\n", tags);
197 if (tags != NULL) {
200 while (*tags != '\0') {
204 while (isspace(*tags)) tags++;
207 while (*tags != '\0' && !isspace(*tags)
[all...]
/system/extras/procrank/
H A Dprocrank.cpp97 static const char* const tags[] = { local
133 while (tags[i]) {
134 if (strncmp(p, tags[i], tagsLen[i]) == 0) {
/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]
392 tag_dict = self._dictionary_by_name(self.tags)
592 if self.tags is not None:
593 for i in self.tags:
1083 tags: A sequence of Tag nodes associated with this Entry.
1091 parent and tags edges are invalid until after Metadata#construct_graph
1235 def tags(self): member in class:Entry
1492 'hal_details', 'tags', 'kin
[all...]
/system/media/audio/include/system/
H A Daudio.h86 char tags[AUDIO_ATTRIBUTES_TAGS_MAX_SIZE]; /* UTF8 */ member in struct:__anon1854

Completed in 162 milliseconds