Home
last modified time | relevance | path

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

/system/core/liblog/
Dlogprint.c376 size_t tagNameLength; in android_log_addFilterRule() local
379 tagNameLength = strcspn(filterExpression, ":"); in android_log_addFilterRule()
381 if (tagNameLength == 0) { in android_log_addFilterRule()
385 if (filterExpression[tagNameLength] == ':') { in android_log_addFilterRule()
386 pri = filterCharToPri(filterExpression[tagNameLength + 1]); in android_log_addFilterRule()
393 if (0 == strncmp("*", filterExpression, tagNameLength)) { in android_log_addFilterRule()
420 tagName = strndup(filterExpression, tagNameLength); in android_log_addFilterRule()
424 tagName[tagNameLength] = '\0'; in android_log_addFilterRule()