Merge "liblog: include all structures in README.protocol.md" am: 3fc16fed7e

Change-Id: If815c0c3524f85530b7b5e2acb92c9f724ede9ce
This commit is contained in:
Tom Cherry 2020-04-03 23:59:27 +00:00 committed by Automerger Merge Worker
commit bfaa6a2607

View file

@ -17,6 +17,49 @@ The data that liblog sends to logd is represented below.
};
};
where the embedded structs are defined as:
struct android_log_header_t {
uint8_t id;
uint16_t tid;
log_time realtime;
};
struct log_time {
uint32_t tv_sec = 0;
uint32_t tv_nsec = 0;
}
struct android_event_header_t {
int32_t tag;
};
struct android_event_list_t {
int8_t type; // EVENT_TYPE_LIST
int8_t element_count;
};
struct android_event_float_t {
int8_t type; // EVENT_TYPE_FLOAT
float data;
};
struct android_event_int_t {
int8_t type; // EVENT_TYPE_INT
int32_t data;
} android_event_int_t;
struct android_event_long_t {
int8_t type; // EVENT_TYPE_LONG
int64_t data;
};
struct android_event_string_t {
int8_t type; // EVENT_TYPE_STRING;
int32_t length;
char data[];
};
The payload, excluding the header, has a max size of LOGGER_ENTRY_MAX_PAYLOAD.
## header