Home | History | Annotate | Download | only in libcutils

Lines Matching refs:tags

118 // Read the sysprop and return the value tags should be set to
123 uint64_t tags;
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;
153 tags = atrace_get_property();
155 atrace_enabled_tags = tags;
159 // initialize the tags.