summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'liblog/include_vndk/log/log_event_list.h')
-rw-r--r--liblog/include_vndk/log/log_event_list.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/liblog/include_vndk/log/log_event_list.h b/liblog/include_vndk/log/log_event_list.h
index cbd309174..9f74534be 100644
--- a/liblog/include_vndk/log/log_event_list.h
+++ b/liblog/include_vndk/log/log_event_list.h
@@ -63,6 +63,13 @@ int android_log_write_float32(android_log_context ctx, float value);
63/* NB: LOG_ID_EVENTS and LOG_ID_SECURITY only valid binary buffers */ 63/* NB: LOG_ID_EVENTS and LOG_ID_SECURITY only valid binary buffers */
64int android_log_write_list(android_log_context ctx, log_id_t id); 64int android_log_write_list(android_log_context ctx, log_id_t id);
65 65
66/* Reset writer context */
67int android_log_reset(android_log_context ctx);
68
69/* Reset reader context */
70int android_log_parser_reset(android_log_context ctx,
71 const char* msg, size_t len);
72
66/* Finished with reader or writer context */ 73/* Finished with reader or writer context */
67int android_log_destroy(android_log_context* ctx); 74int android_log_destroy(android_log_context* ctx);
68 75