Home
last modified time | relevance | path

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

/system/core/liblog/
Dlog_event_list.c30 #define MAX_EVENT_PAYLOAD (LOGGER_ENTRY_MAX_PAYLOAD - sizeof(int32_t)) macro
59 if ((context->pos + needed) > MAX_EVENT_PAYLOAD) { in create_android_logger()
80 len = (len <= MAX_EVENT_PAYLOAD) ? len : MAX_EVENT_PAYLOAD; in create_android_log_parser()
115 if ((context->pos + needed) > MAX_EVENT_PAYLOAD) { in android_log_write_list_begin()
157 if ((context->pos + needed) > MAX_EVENT_PAYLOAD) { in android_log_write_int32()
193 if ((context->pos + needed) > MAX_EVENT_PAYLOAD) { in android_log_write_int64()
223 if ((context->pos + needed) > MAX_EVENT_PAYLOAD) { in android_log_write_string8_len()
225 len = MAX_EVENT_PAYLOAD - context->pos - 1 - sizeof(int32_t); in android_log_write_string8_len()
243 return android_log_write_string8_len(ctx, value, MAX_EVENT_PAYLOAD); in android_log_write_string8()
260 if ((context->pos + needed) > MAX_EVENT_PAYLOAD) { in android_log_write_float32()
[all …]