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

/system/extras/procrank/
H A Dprocrank.c68 static const char* const tags[] = { local
91 while (tags[i]) {
92 if (strncmp(p, tags[i], tagsLen[i]) == 0) {
/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.c80 /* read a comma/space/colum/semi-column separated list of tags
93 } tags[] = { local
123 for (tagn = 0; tags[tagn].tag != NULL; tagn++)
125 int taglen = strlen(tags[tagn].tag);
127 if (len == taglen && !memcmp(tags[tagn].tag, p, len) )
129 int flag = tags[tagn].flag;

Completed in 813 milliseconds