Home
last modified time | relevance | path

Searched refs:tagNameLength (Results 1 – 1 of 1) sorted by relevance

/system/logging/liblog/
Dlogprint.cpp373 size_t tagNameLength; in android_log_addFilterRule() local
376 tagNameLength = strcspn(filterExpression, ":"); in android_log_addFilterRule()
378 if (tagNameLength == 0) { in android_log_addFilterRule()
382 if (filterExpression[tagNameLength] == ':') { in android_log_addFilterRule()
383 pri = filterCharToPri(filterExpression[tagNameLength + 1]); in android_log_addFilterRule()
390 if (0 == strncmp("*", filterExpression, tagNameLength)) { in android_log_addFilterRule()
417 tagName = strndup(filterExpression, tagNameLength); in android_log_addFilterRule()
421 tagName[tagNameLength] = '\0'; in android_log_addFilterRule()