Home
last modified time | relevance | path

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

/packages/modules/StatsD/statsd/benchmark/
Dlog_event_benchmark.cpp59 uint8_t msg[LOGGER_ENTRY_MAX_PAYLOAD]; in BM_LogEventCreation()
69 uint8_t msg[LOGGER_ENTRY_MAX_PAYLOAD]; in BM_LogEventCreationWithPrefetch()
84 uint8_t msg[LOGGER_ENTRY_MAX_PAYLOAD]; in BM_LogEventCreationWithPrefetchOnly()
96 uint8_t msg[LOGGER_ENTRY_MAX_PAYLOAD]; in BM_LogEventCreationMedium()
107 uint8_t msg[LOGGER_ENTRY_MAX_PAYLOAD]; in BM_LogEventCreationMediumWithPrefetch()
122 uint8_t msg[LOGGER_ENTRY_MAX_PAYLOAD]; in BM_LogEventCreationMediumWithPrefetchOnly()
134 uint8_t msg[LOGGER_ENTRY_MAX_PAYLOAD]; in BM_LogEventCreationLarge()
145 uint8_t msg[LOGGER_ENTRY_MAX_PAYLOAD]; in BM_LogEventCreationLargeWithPrefetch()
160 uint8_t msg[LOGGER_ENTRY_MAX_PAYLOAD]; in BM_LogEventCreationLargeWithPrefetchOnly()
172 uint8_t msg[LOGGER_ENTRY_MAX_PAYLOAD]; in BM_LogEventCreationExtraLarge()
[all …]
/packages/modules/StatsD/lib/libstatssocket/
Dstatsd_writer.cpp260 if (payloadSize > LOGGER_ENTRY_MAX_PAYLOAD) { in statsdWrite()
261 newVec[i].iov_len -= payloadSize - LOGGER_ENTRY_MAX_PAYLOAD; in statsdWrite()
Dstats_event.c25 #define LOGGER_ENTRY_MAX_PAYLOAD 4068 macro
28 #define MAX_PUSH_EVENT_PAYLOAD (LOGGER_ENTRY_MAX_PAYLOAD - 4)
/packages/modules/StatsD/framework/java/android/util/
DStatsEvent.java234 private static final int LOGGER_ENTRY_MAX_PAYLOAD = 4068; field in StatsEvent
238 private static final int MAX_PUSH_PAYLOAD_SIZE = LOGGER_ENTRY_MAX_PAYLOAD - 4;
/packages/modules/StatsD/statsd/src/socket/
DStatsSocketListener.cpp62 char buffer[sizeof(android_log_header_t) + LOGGER_ENTRY_MAX_PAYLOAD + 1]; in onDataAvailable()