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

/system/core/libcutils/
H A Dtrace-dev.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/media/camera/tests/
H A Dcamera_metadata_tests.cpp1037 std::vector<uint32_t> tags; local
1038 tags.push_back(ANDROID_COLOR_CORRECTION_TRANSFORM);
1039 tags.push_back(ANDROID_LENS_FOCUS_DISTANCE);
1040 tags.push_back(ANDROID_SENSOR_EXPOSURE_TIME);
1041 tags.push_back(ANDROID_SENSOR_SENSITIVITY);
1042 std::sort(tags.begin(), tags.end());
1045 std::find(tags.begin(), tags.end(), ANDROID_LENS_FOCUS_DISTANCE)
1046 - tags
[all...]
/system/core/base/
H A Dlogging.cpp254 const char* tags = getenv("ANDROID_LOG_TAGS"); local
255 if (tags == nullptr) {
259 std::vector<std::string> specs = Split(tags, " ");
290 LOG(FATAL) << "unsupported '" << spec << "' in ANDROID_LOG_TAGS (" << tags local
/system/extras/procrank/
H A Dprocrank.c88 static const char* const tags[] = { local
124 while (tags[i]) {
125 if (strncmp(p, tags[i], tagsLen[i]) == 0) {
/system/connectivity/shill/dbus/
H A Dchromeos_manager_dbus_adaptor.cc382 string* tags) {
384 *tags = ScopeLogger::GetInstance()->GetEnabledScopeNames();
389 const string& tags) {
390 SLOG(this, 2) << __func__ << ": " << tags; local
391 ScopeLogger::GetInstance()->EnableScopesByName(tags);
396 string* tags) {
398 *tags = ScopeLogger::GetInstance()->GetAllScopeNames();
381 GetDebugTags(brillo::ErrorPtr* , string* tags) argument
388 SetDebugTags(brillo::ErrorPtr* , const string& tags) argument
395 ListDebugTags(brillo::ErrorPtr* , string* tags) argument
/system/connectivity/shill/test-rpc-proxy/
H A Dproxy_dbus_client.cc429 bool ProxyDbusClient::SetLoggingInternal(int level, const std::string& tags) { argument
433 is_success &= shill_manager_proxy_.SetDebugTags(tags, &error);
/system/core/liblog/
H A Dfake_log_device.c79 /* tags and priorities */
178 * This can be used to reveal or conceal logs with specific tags.
202 const char* tags = getenv("ANDROID_LOG_TAGS"); local
203 TRACE("Found ANDROID_LOG_TAGS='%s'\n", tags);
204 if (tags != NULL) {
207 while (*tags != '\0') {
211 while (isspace(*tags))
212 tags++;
215 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]
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.h179 char tags[AUDIO_ATTRIBUTES_TAGS_MAX_SIZE]; /* UTF8 */ member in struct:__anon1802

Completed in 408 milliseconds