HomeSort by relevance Sort by last modified time
    Searched refs:LOGGER_ENTRY_MAX_PAYLOAD (Results 1 - 16 of 16) sorted by null

  /system/core/liblog/
pmsg_writer.c 161 if (payloadSize > LOGGER_ENTRY_MAX_PAYLOAD) {
162 newVec[i].iov_len -= payloadSize - LOGGER_ENTRY_MAX_PAYLOAD;
166 payloadSize = LOGGER_ENTRY_MAX_PAYLOAD;
188 * maximum of LOGGER_ENTRY_MAX_PAYLOAD, but scaled to the last newline in the
252 packet_len = LOGGER_ENTRY_MAX_PAYLOAD - sizeof(char) - length;
logd_writer.c 215 if (payloadSize > LOGGER_ENTRY_MAX_PAYLOAD) {
216 newVec[i].iov_len -= payloadSize - LOGGER_ENTRY_MAX_PAYLOAD;
log_event_list.c 30 #define MAX_EVENT_PAYLOAD (LOGGER_ENTRY_MAX_PAYLOAD - sizeof(int32_t))
45 uint8_t storage[LOGGER_ENTRY_MAX_PAYLOAD];
pmsg_reader.c 185 || (buf.p.len > (sizeof(buf) + LOGGER_ENTRY_MAX_PAYLOAD))
  /system/core/logd/
LogAudit.cpp 162 size_t l = strnlen(str, LOGGER_ENTRY_MAX_PAYLOAD);
216 if (b > LOGGER_ENTRY_MAX_PAYLOAD) {
217 b = LOGGER_ENTRY_MAX_PAYLOAD;
219 size_t e = strnlen(ecomm, LOGGER_ENTRY_MAX_PAYLOAD - b);
LogListener.cpp 48 + LOGGER_ENTRY_MAX_PAYLOAD];
LogKlog.cpp 239 char buffer[LOGGER_ENTRY_MAX_PAYLOAD];
758 if (b > LOGGER_ENTRY_MAX_PAYLOAD) {
759 b = LOGGER_ENTRY_MAX_PAYLOAD;
761 if (taglen > LOGGER_ENTRY_MAX_PAYLOAD) {
762 taglen = LOGGER_ENTRY_MAX_PAYLOAD;
  /frameworks/base/core/jni/
android_util_Log.cpp 24 #include <log/logger.h> // For LOGGER_ENTRY_MAX_PAYLOAD.
120 return static_cast<jint>(LOGGER_ENTRY_MAX_PAYLOAD);
android_app_admin_SecurityLog.cpp 25 #define MAX_EVENT_PAYLOAD (LOGGER_ENTRY_MAX_PAYLOAD - sizeof(int32_t))
android_util_EventLog.cpp 27 #define MAX_EVENT_PAYLOAD (LOGGER_ENTRY_MAX_PAYLOAD - sizeof(int32_t))
android_util_Binder.cpp     [all...]
  /frameworks/base/core/java/android/util/
Log.java 374 * @return LOGGER_ENTRY_MAX_PAYLOAD.
391 int bufferSize = NoPreloadHolder.LOGGER_ENTRY_MAX_PAYLOAD // Base.
428 * NoPreloadHelper class. Caches the LOGGER_ENTRY_MAX_PAYLOAD value to avoid
432 public final static int LOGGER_ENTRY_MAX_PAYLOAD =
  /system/core/include/log/
logger.h 84 #define LOGGER_ENTRY_MAX_PAYLOAD 4068
  /system/core/liblog/tests/
liblog_benchmark.cpp 360 char buf[sizeof(struct packet) + 8 + LOGGER_ENTRY_MAX_PAYLOAD] __aligned(8);
387 write(pstore_fd, &buffer->pmsg_header, LOGGER_ENTRY_MAX_PAYLOAD);
433 char buf[sizeof(struct packet) + 8 + LOGGER_ENTRY_MAX_PAYLOAD] __aligned(8);
460 write(pstore_fd, &buffer->pmsg_header, LOGGER_ENTRY_MAX_PAYLOAD);
liblog_test.cpp 771 #define SIZEOF_MAX_PAYLOAD_BUF (LOGGER_ENTRY_MAX_PAYLOAD - \
990 || ((size_t)log_msg.entry.len < LOGGER_ENTRY_MAX_PAYLOAD)
1010 EXPECT_GT(LOGGER_ENTRY_MAX_PAYLOAD * 13 / 8, printLogLine);
1071 EXPECT_LE(LOGGER_ENTRY_MAX_PAYLOAD - sizeof(big_payload_tag),
    [all...]
  /system/core/logcat/
logcat.cpp     [all...]

Completed in 188 milliseconds