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

/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/core/adb/
H A Dadb.c68 /* read a comma/space/colum/semi-column separated list of tags
81 } tags[] = { local
109 for (tagn = 0; tags[tagn].tag != NULL; tagn++)
111 int taglen = strlen(tags[tagn].tag);
113 if (len == taglen && !memcmp(tags[tagn].tag, p, len) )
115 int flag = tags[tagn].flag;

Completed in 70 milliseconds