Home
last modified time | relevance | path

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

/aosp12/system/logging/liblog/
H A Dlogger_read.cpp112 if (ret > LOGGER_ENTRY_MAX_LEN) { in android_logger_list_read()
113 ret = LOGGER_ENTRY_MAX_LEN; in android_logger_list_read()
121 log_msg->entry.hdr_size >= LOGGER_ENTRY_MAX_LEN - sizeof(log_msg->entry)) { in android_logger_list_read()
H A DREADME.protocol.md92 the payloads defined above. The max size of the entire message from logd is LOGGER_ENTRY_MAX_LEN.
H A Dlogd_reader.cpp372 ret = TEMP_FAILURE_RETRY(recv(ret, log_msg, LOGGER_ENTRY_MAX_LEN, 0)); in LogdRead()
/aosp12/system/logging/liblog/include/log/
H A Dlog_read.h55 #define LOGGER_ENTRY_MAX_LEN (5 * 1024) macro
59 unsigned char buf[LOGGER_ENTRY_MAX_LEN + 1];
/aosp12/system/logging/liblog/include_vndk/log/
H A Dlog_read.h55 #define LOGGER_ENTRY_MAX_LEN (5 * 1024) macro
59 unsigned char buf[LOGGER_ENTRY_MAX_LEN + 1];
/aosp12/system/logging/liblog/tests/
H A Dlogprint_test.cpp141 alignas(logger_entry) char buf[LOGGER_ENTRY_MAX_LEN]; in TEST()
/aosp12/system/logging/logcat/
H A Dlogcat.cpp997 (int)LOGGER_ENTRY_MAX_LEN, (int)LOGGER_ENTRY_MAX_PAYLOAD); in Run()