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

/system/core/libcutils/
H A Dtrace.c119 // Read the sysprop and return the value tags should be set to
124 uint64_t tags; local
126 property_get("debug.atrace.tags.enableflags", value, "0");
128 tags = strtoull(value, &endptr, 0);
132 } else if (errno == ERANGE || tags == ULLONG_MAX) {
140 tags |= ATRACE_TAG_APP;
142 tags &= ~ATRACE_TAG_APP;
145 return (tags | ATRACE_TAG_ALWAYS) & ATRACE_TAG_VALID_MASK;
148 // Update tags if tracing is ready. Useful as a sysprop change callback.
151 uint64_t tags; local
[all...]
/system/extras/procrank/
H A Dprocrank.c70 static const char* const tags[] = { local
93 while (tags[i]) {
94 if (strncmp(p, tags[i], tagsLen[i]) == 0) {
/system/media/camera/tests/
H A Dcamera_metadata_tests.cpp984 std::vector<uint32_t> tags; local
985 tags.push_back(ANDROID_COLOR_CORRECTION_TRANSFORM);
986 tags.push_back(ANDROID_LENS_FOCUS_DISTANCE);
987 tags.push_back(ANDROID_SENSOR_EXPOSURE_TIME);
988 tags.push_back(ANDROID_SENSOR_SENSITIVITY);
989 std::sort(tags.begin(), tags.end());
992 std::find(tags.begin(), tags.end(), ANDROID_LENS_FOCUS_DISTANCE)
993 - tags
[all...]
/system/core/liblog/
H A Dfake_log_device.c77 /* tags and priorities */
172 * This can be used to reveal or conceal logs with specific tags.
194 const char* tags = getenv("ANDROID_LOG_TAGS"); local
195 TRACE("Found ANDROID_LOG_TAGS='%s'\n", tags);
196 if (tags != NULL) {
199 while (*tags != '\0') {
203 while (isspace(*tags))
204 tags++;
207 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:
1031 tags: A sequence of Tag nodes associated with this Entry.
1039 parent and tags edges are invalid until after Metadata#construct_graph
1154 def tags(self): member in class:Entry
1400 props_distinct = ['description', 'units', 'range', 'notes', 'tags', 'kin
[all...]
/system/core/adb/
H A Dadb.c83 /* read a comma/space/colum/semi-column separated list of tags
96 } tags[] = { local
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) )
132 int flag = tags[tagn].flag;

Completed in 149 milliseconds