Home
last modified time | relevance | path

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

/system/connectivity/wifilogd/tests/
Dprotocol_unittest.cpp38 uint8_t tagLen = 3; in TEST() local
41 AsciiMessage().set_tag_len(tagLen).set_data_len(dataLen); in TEST()
42 EXPECT_EQ(tagLen, ascii_message_header.tag_len); in TEST()
48 uint8_t tagLen = 3; in TEST() local
51 ascii_message_header.set_tag_len(tagLen); in TEST()
53 EXPECT_EQ(tagLen, ascii_message_header.tag_len); in TEST()
/system/core/liblog/
Dlogprint.c586 entry->tagLen = msgStart - 1; in android_log_processLogBuffer()
1061 entry->tagLen = 0; in android_log_processBinaryLogBuffer()
1065 entry->tag = android_lookupEventTag_len(map, &entry->tagLen, tagIndex); in android_log_processBinaryLogBuffer()
1075 size_t tagLen; in android_log_processBinaryLogBuffer() local
1077 tagLen = snprintf(messageBuf, messageBufLen, "[%" PRIu32 "]", tagIndex); in android_log_processBinaryLogBuffer()
1078 if (tagLen >= (size_t)messageBufLen) { in android_log_processBinaryLogBuffer()
1079 tagLen = messageBufLen - 1; in android_log_processBinaryLogBuffer()
1082 entry->tagLen = tagLen; in android_log_processBinaryLogBuffer()
1083 messageBuf += tagLen + 1; in android_log_processBinaryLogBuffer()
1084 messageBufLen -= tagLen + 1; in android_log_processBinaryLogBuffer()
[all …]
Devent_tag_map.cpp285 size_t tagLen = cp - tag; in scanTagLine() local
327 TagFmt(std::make_pair(MapString(tag, tagLen), in scanTagLine()
336 TagFmt(std::make_pair(MapString(std::string(tag, tagLen)), in scanTagLine()
/system/core/liblog/include/log/
Dlogprint.h64 size_t tagLen; member
/system/core/debuggerd/libdebuggerd/
Dtombstone.cpp541 'I', (int)e.tagLen, e.tag, e.message); in dump_log_file()
/system/core/logcat/
Dlogcat.cpp335 context->logformat, std::string(entry.tag, entry.tagLen).c_str(), in processBuffer()