Home
last modified time | relevance | path

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

/system/logging/liblog/
Dlogprint.cpp573 entry->tagLen = msgStart - 1; in android_log_processLogBuffer()
1005 entry->tagLen = 0; in android_log_processBinaryLogBuffer()
1009 entry->tag = android_lookupEventTag_len(map, &entry->tagLen, tagIndex); in android_log_processBinaryLogBuffer()
1019 size_t tagLen; in android_log_processBinaryLogBuffer() local
1021 tagLen = snprintf(messageBuf, messageBufLen, "[%" PRIu32 "]", tagIndex); in android_log_processBinaryLogBuffer()
1022 if (tagLen >= (size_t)messageBufLen) { in android_log_processBinaryLogBuffer()
1023 tagLen = messageBufLen - 1; in android_log_processBinaryLogBuffer()
1026 entry->tagLen = tagLen; in android_log_processBinaryLogBuffer()
1027 messageBuf += tagLen + 1; in android_log_processBinaryLogBuffer()
1028 messageBufLen -= tagLen + 1; in android_log_processBinaryLogBuffer()
[all …]
Devent_tag_map.cpp170 size_t tagLen = cp - tag; in scanTagLine() local
209 TagFmt(std::make_pair(std::string_view(tag, tagLen), std::string_view(fmt, fmtLen))), in scanTagLine()
/system/logging/liblog/include/log/
Dlogprint.h64 size_t tagLen; member
/system/logging/liblog/tests/
Dlogprint_test.cpp137 EXPECT_EQ(4U, entry.tagLen); // Apparently taglen includes the nullptr? in TEST()
/system/logging/logcat/
Dlogcat.cpp212 if (android_log_shouldPrintLine(logformat_.get(), std::string(entry.tag, entry.tagLen).c_str(), in ProcessBuffer()