Searched refs:android_log_context (Results 1 – 5 of 5) sorted by relevance
/system/core/include/log/ |
D | log.h | 557 typedef struct android_log_context_internal *android_log_context; typedef 578 android_log_context create_android_logger(uint32_t tag); 586 int android_log_write_list_begin(android_log_context ctx); 587 int android_log_write_list_end(android_log_context ctx); 589 int android_log_write_int32(android_log_context ctx, int32_t value); 590 int android_log_write_int64(android_log_context ctx, int64_t value); 591 int android_log_write_string8(android_log_context ctx, const char *value); 592 int android_log_write_string8_len(android_log_context ctx, 594 int android_log_write_float32(android_log_context ctx, float value); 598 int android_log_write_list(android_log_context ctx, log_id_t id); [all …]
|
/system/core/liblog/ |
D | log_event_list.c | 48 LIBLOG_ABI_PUBLIC android_log_context create_android_logger(uint32_t tag) { in create_android_logger() 67 return (android_log_context)context; in create_android_logger() 70 LIBLOG_ABI_PUBLIC android_log_context create_android_log_parser( in create_android_log_parser() 85 return (android_log_context)context; in create_android_log_parser() 88 LIBLOG_ABI_PUBLIC int android_log_destroy(android_log_context *ctx) { in android_log_destroy() 101 LIBLOG_ABI_PUBLIC int android_log_write_list_begin(android_log_context ctx) { in android_log_write_list_begin() 144 LIBLOG_ABI_PUBLIC int android_log_write_int32(android_log_context ctx, in android_log_write_int32() 180 LIBLOG_ABI_PUBLIC int android_log_write_int64(android_log_context ctx, in android_log_write_int64() 204 LIBLOG_ABI_PUBLIC int android_log_write_string8_len(android_log_context ctx, in android_log_write_string8_len() 241 LIBLOG_ABI_PUBLIC int android_log_write_string8(android_log_context ctx, in android_log_write_string8() [all …]
|
D | logger.h | 33 union android_log_context { union 44 union android_log_context context; /* Initialized by static allocation */ 116 union android_log_context context; /* zero init per-transport context */
|
D | log_event_write.c | 34 android_log_context ctx = create_android_logger(tag); in __android_log_error_write()
|
/system/core/liblog/tests/ |
D | liblog_test.cpp | 1919 android_log_context context = create_android_log_parser(msg, len); in android_log_buffer_to_string() 2070 android_log_context ctx; in event_test_int32() 2088 android_log_context ctx; in event_test_int64() 2106 android_log_context ctx; in event_test_list_int64() 2127 android_log_context ctx; in event_test_simple_automagic_list() 2150 android_log_context ctx; in event_test_list_empty() 2169 android_log_context ctx; in event_test_complex_nested_list() 2219 android_log_context ctx; in event_test_7_level_prefix() 2257 android_log_context ctx; in event_test_7_level_suffix() 2442 android_log_context ctx; in TEST()
|